Search this site
-
Recent Posts
Recent Comments
- kiranvj on Add custom picture and other details in System Properties tab
- Faisal Abbas on Add custom picture and other details in System Properties tab
- kiranvj on AS3 – Access root from a movie clip
- Abhilash on AS3 – Access root from a movie clip
- kiranvj on AS3 – Access root from a movie clip
- Abhilash on AS3 – Access root from a movie clip
- AuRoN on Implementing CAPTCHA using PHP
Categories
Category Archives: VBScript
VBScript : Find script execution time
Using the script below you can find how much time it took to execute your VBScript code. Dim startTime startTime = Now ‘execute your code here endTime = Now MsgBox("Time taken to execute code : " & DateDiff("s",startTime,endTime)&" seconds") You … Continue reading