Category: vbscript
Given a Integer, we want to convert it to binary string. We can do this iteratively, by concatenating the modulus by two result and shifting the number 1 position …
The selection sort, similar to insertion sort, is one of the simple sorting algorithm that has O(N^2) time complexity. The selection sorting algorithm is quadratic, thus not efficient when …
I was given a few Excel CSV files that contain quite a lot of values, like this: The task is to copy all the valid numbers and store them …
SteemVBS is the first Steem Library written in VBScript. Yes, it is VBScript. 😉 SteemVBS VBScript is still being used nowadays, especially on windows platforms. You can do so …
The quickest way to determine the version of Microsoft Word installed on the current PC is to run the following VBScript. Dim objWord Set objWord = CreateObject("Word.Application") WScript.Echo "Version: …