Tag: script
Some complex tasks might not be so complicated. For example, to emulate the matrix printing like the following. All you need is just a few lines of code in …
April 17, 2013
batch script, beginner, code, implementation, programming languages, tricks, VBA, vbscript, windows, windows command shell, windows scripting host
Windows is full of COM (Component Object Model), and many software (such as Microsoft Office) provides the COM automation object, that can be easily programmed. The following shows an …
The Dictionary is an important data-structure and is a very handy tool to store a collection of key-value pairs. The Dictionary object can be created easily using Scripting language …
The following script snippet is handy at checking whether a folder exists or not at Window Script Hosting Environment using VBScript. Set objFSO = CreateObject("Scripting.FileSystemObject") If objFSO.FolderExists("C:\FSO") Then Set …
post talks about the variables scopes in Javascript. Here, we will turn to VBScript for similar investigation upon the variable scopes. There is no closure (inner function) in VBScript, …