Top "Vbscript" questions

VBScript (Visual Basic Scripting Edition) is an interpreted scripting language developed by Microsoft that is modeled on Visual Basic.

VBScript SendKeys CTRL+LWIN+TAB?

I am trying to write a simple script that will send the key combo of CTRL+WINDOWS KEY+TAB. The …

windows vbscript sendkeys keystroke
VBScript WScript.Shell Run() - The system cannot find the file specified

I'm trying to write a VBScript (.vbs) script that uses the WScript.Shell Run() method, but it seems as though …

vbscript wsh
Read line per line a txt file with VBS

I'm trying this code: filename = "test.txt" listFile = fso.OpenTextFile(filename).ReadAll listLines = Split(listFile, vbCrLf) For Each line In …

vbscript fso
ASP/VBScript - Int() vs CInt()

What is the difference in ASP/VBScript between Int() and CInt()?

asp-classic vbscript
Using VBScript to find most recent file date in a single folder

How could I modify this VBScript to return only the newest file's name and Last Modified date? Currently it returns …

file-io vbscript wsh
Failproof Wait for IE to load

Is there a foolproof way for the script to wait till the Internet explorer is completely loaded? Both oIE.Busy …

internet-explorer web-scraping vbscript wsh readystate
QTP: Checking If an array of strings contains a value

I am having trouble getting my test case to run correctly. The problem is in the code below, the first …

vbscript automated-tests qtp
How can I compare two dates in vbscript/ASP?

Using ASP classic, I need to somehow compare two dates with each other. How can I do this?

date asp-classic vbscript
VB6/VBScript change file encoding to ansi

I am looking for a way to convert a textfile with UTF8 encoding to ANSI encoding. How can i go …

vba encoding vbscript vb6 ansi
ASP Line-breaks - \n?

I have been searching for a way to insert linebreaks in my code for when I view my source. I …

asp-classic vbscript line-breaks