Currently browsing category

VBA

Get temporary folder path in VBA

It is normal to create temporary files and folders to facilitate the process in programs. Apart from doing it in your working directory, why …

Get milliseconds in VBA

Do you ever find it hard to get the millisecond in your programs? In default VBA does not provide this function, however we …

Run shell commands in VBA

We can use shell to execute any programs. Please be reminded that we may need to execute in an indirect way. To …

Dynamic array in VBA

We can easy resize the array declared in VBA. The trick is actually relocate the array to a bigger space. Suppose we …