Category: vbscript
Bubble sort is a very simple sorting technique that has the average and worst-case complexity . It swaps each time neighbouring two elements if it is not in order. …
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 …
Scripting.FileSystemObject is a powerful utility, that is often used in Scripting languages. In , the Scripting.FileSystemObject is used to verify if a folder exists. It can be also used …
The Ackermann function is mathematically defined as: The Ack function is well-defined total math function which is compute-able but not a primitive recursive function. Its value grow so quickly …
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 …