Tag: vbscript
The following VBScript runs at WSH (Window Scripting Host). It is used to list the items in “My Computer” folder. The Object “Shell.Application” is required for this to work. …
June 30, 2013
bug fixes, debug, delphi, interpreter / compiler, multithreading, programming languages, technical, tricks, Win32 API, windows scripting host
I’ve moved the following from the stackoverflow.com before I delete the post. It was suggested that “It’s not a valid question if the answer can be found only using …
On Windows OS, you will find the COM automation object SAPI.SpVoice that brings TTS (Text-To-Speech). The following shows an example of using SAPI to speak given a sentences. By default, only English …
May 6, 2013
beginner, I/O File, implementation, internet, programming languages, tricks, VBA, vbscript, windows, windows scripting host
Ajax stands for Asynchronous Javascript and Xml. In the examples given in this post, we can see that XMLHTTP object is created, for IE6 and IE5. The XMLHTTP object can be used in VBScript to …
The FileSystemObject provides a GetTempName method that returns a temporary file name. The following is the short example, in VBScript on Windows Scripting Host. ' Auto-Generate a File Name Set objFSO …