Tagged Questions

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

learn more… | top users | synonyms (1)

22
votes
11answers
594 views

How do you keep debug code out of production?

It happens to the best of us. Particularly when dealing with languages without built in debugging capabilities such as breakpoints and watched variables, these bugs bite developers. Debugging ...
21
votes
6answers
13k views

Any good libraries for parsing JSON in Classic ASP?

I've been able to find a zillion libraries for generating JSON in Classic ASP (VBScript) but I haven't been to find ANY for parsing. I want something that I can pass a JSON string and get back a ...
21
votes
7answers
20k views

Can Windows' built-in ZIP compression be scripted?

Is the ZIP compression that is built into Windows XP/Vista/2003/2008 able to be scripted at all? What executable would I have to call from a BAT/CMD file? or is it possible to do it with VBScript? I ...
16
votes
18answers
14k views

What is the IDE for classic ASP and VBScript?

Yes, I'm stuck supporting a legacy ASP application. I currently have VS2008 installed but it complains incessantly about the ASP and VBScript I am dealing with. What would be a better IDE to use to ...
13
votes
4answers
2k views

Why is modulus different in different programming languages?

Perl print 2 % -18; --> -16 Tcl puts [expr {2 % -18}] --> -16 but VBScript wscript.echo 2 mod -18 --> 2 Why the difference?
13
votes
12answers
1k views

How do I make the business case for Python?

How would I make a compelling argument for introducing Python into a windows environment? VBscript or Batch scripts will run on any machine and handle most administrative tasks and Java and .Net are ...
12
votes
16answers
875 views

Why continue writing legacy systems?

I have a student position working on some websites for my school. Everything my school does is in VBScript/ASP Classic. I'm a bit confused about something. I can understand that my school as a LOT ...
10
votes
2answers
9k views

How do I run a VBScript in 32-bit mode on a 64-bit machine?

I have a text file that ends with .vbs that I have written the following in: Set Conn = CreateObject("ADODB.Connection") Conn.Provider = "Microsoft.ACE.OLEDB.12.0" Conn.Properties("Data Source") = ...
10
votes
14answers
3k views

Response.Write vs <%= %>

Bearing in mind this is for classic asp Which is better, all HTML contained within Response.Write Statements or inserting variables into HTML via <%= %>. Eg Response.Write "<table>" & ...
9
votes
2answers
3k views

Regular Expression Rules in Outlook 2007?

Is it possible to create rules in Outlook 2007 based on a regex string? I'm trying to add a filter for messages containing a string such as: 4000-10, a four digit number followed by a dash and then ...
9
votes
1answer
398 views

Implementing lazy-loaded modules in VBScript

A while back, I needed a solution to sanely import libraries in VBScript. VBScript, for reference, has no build-in import capabilities. The traditional method of importing files is to use SSI, which ...
9
votes
2answers
9k views

Does VBScript have a substring() function?

Is there a substring() function in VBScript similar to Java's string.substring()?
9
votes
4answers
621 views

Finding and removing orphaned web pages, images, and other related files

I am working on a number of websites with files dating back to 2000. These sites have grown organically over time resulting in large numbers of orphaned web pages, include files, images, CSS files, ...
9
votes
20answers
36k views

What is your favorite VBScript Editor?

I currently use notepad++ for writing/editing VBScipts, but I am looking for something new (and also free). Anybody have a favorite? I don't have a problem with notepad++; in fact I really like it ...
9
votes
10answers
29k views

Oracle to Excel - PL/SQL export procedure

I’m writing pl/sql procedure that exports data from Oracle to Excel. I need data formatting so I can’t use CSV. I’ve already tried with XML but it generates too large files when I want to export e.g. ...
9
votes
8answers
18k views

How do I sort arrays using vbscript?

The question says it all really, but... I'm scanning through a file looking for lines that match a certain regex pattern, and then I want to print out the lines that match but in alphabetical order. ...
8
votes
1answer
90 views

Will vsdoc files work for vbscript?

In an attempt to create better intellisense support for legacy classic asp / vbscript, will the visual studios vsdoc files work for other scripting laguages e.g. vbscript?
8
votes
5answers
3k views

How can I use the common Save As dialog from VBScript?

I'd like to have my VBScript display the Windows Save As dialog box, but I could not find out how to do it. Using this code: Dim sfd Set sfd = CreateObject("UserAccounts.CommonDialog") sfd.ShowOpen ...
8
votes
20answers
566 views

How should I go about learning to write programs?

I'm 15 years old and I want to learn how to program computers. I like to think I'm more experienced with computers than the average person, I use the command prompt every day and I know how to access ...
8
votes
4answers
51k views

Download a file using Javascript

There's this Excel file I want users to be able to download from my server. There must be an easy way to initiate the download of the file after a click on the "Download" button... but I have no clue ...
8
votes
5answers
15k views

Extract files from ZIP file with VBScript

When extracting files from a ZIP file I was using the following. Sub Unzip(strFile) ' This routine unzips a file. NOTE: The files are extracted to a folder ' ' in the same location using the name of ...
7
votes
1answer
410 views

IE browser script to determine which (if any) ActiveX control will handle specific mime type

I'm trying to figure out in an IE script (javascript or vbscript) which ActiveX control will handle a specific mime type, "image/tiff" in this case. This is easy to do in other browsers that use ...
7
votes
8answers
523 views

How can I deal with having to code classic ASP?

I've just accepted a classic ASP project, because I need the work and the pay is good. So, can I use Visual Studio >= 2005 to edit this? Are there other editors that can deal with it, such as ...
7
votes
3answers
3k views

Can I use a language other than VBScript to programmatically execute QTP Tests?

I have VBScript code which launches QuickTest Professional, executes a series of QTP tests, and emails the results. This works well, but I would prefer to use a language with better tools support (a ...
7
votes
6answers
17k views

ActiveX component can't create object

I have just installed a third party app on my Windows Server 2008 server and I get the "ActiveX Component can't create object" Message when I try to access using a CreateObject in VBScript. It is ...
7
votes
3answers
10k views

Get the current temporary directory path in VBScript?

The VB trick to get the path of the current temporary directory: Private Declare Function GetTempPath Lib "kernel32" Alias "GetTempPathA" (ByVal nBufferLength As Long, ByVal lpBuffer As String) As ...
7
votes
3answers
2k views

Outputting a GUID in VBScript ignores all text after it

I'm creating a GUID for use in a Classic ASP application, by using TypeLib. However, even a simple test such as writing the GUID out to the screen is giving me problems - it prints the GUID but ...
7
votes
3answers
19k views

How to call a VBScript file in a C# application?

I need to call a VBScript file (.vbs file extension) in my C# Windows application. How can I do this? There is an add-in to access a VBScript file in Visual Studio. But I need to access the script ...
7
votes
3answers
2k views

Expose an event handler to VBScript users of my COM object

Suppose I have a COM object which users can access via a call such as: Set s = CreateObject("Server") What I'd like to be able to do is allow the user to specify an event handler for the object, ...
6
votes
2answers
441 views

VBScript Partial Parser

I am trying to create a VBScript parser. I was wondering what is the best way to go about it. I have researched and researched. The most popular way seems to be going for something like Gold Parser or ...
6
votes
1answer
710 views

IE9 Error 80020102, using vbscript Preserve keyword with doctype strict

I'm using IE9 beta with the test code below and i encounter an 80020102 error when vbscript tries to append to the array. If I run this in quirks mode it seems to work. Not knowing if this is an MS ...
6
votes
3answers
551 views

How to read the contents of a .zip file with VBScript without actually extracting the files?

I have a .zip file that starts with a parent directory. I need to read that dir from the file then search my HD to see if that dir name already exists. If it exists, I then delete it and replace it ...
6
votes
3answers
493 views

Start Internet Explorer 8 in a separate process using vbscript

Due to the recently added "feature" in IE8 where new windows are automatically associated with a single session, some of our code is behaving erratically. This is because a separate app would launch ...
6
votes
1answer
3k views

Add item to array in VBScript

How do you add an item to an existing array in VBScript? Is there a VBScript equivalent to the push function in Javascript? i.e. myArray has three items, "Apples", "Oranges", and "Bananas" and I ...
6
votes
5answers
2k views

Double quotes in VBScript argument

As I read and experienced for myself VBScript removes all double quotes from and argument. Does anyone know a way around this? How to pass double quotes into the script?
6
votes
2answers
482 views

Import WinAPI Function in *.VBS File

Using visual basic in say Excel, I am able to declare WinAPI functions using the DECLARE keyword - e.g. Declare Function SetLocaleInfo Lib "kernel32" Alias "SetLocaleInfoA" ( _ ByVal Locale As ...
6
votes
9answers
8k views

What's the environment variable for the path to the desktop?

I'm writing a Windows batch file and want to copy something to the desktop. I think I can use this: %UserProfile%\Desktop\ However, I'm thinking, that's probably only going to work on an ...
6
votes
3answers
2k views

What is the difference between VB and VBScript

What is the difference between VB and VBScript?
6
votes
1answer
4k views

Calling WCF service by VBScript

There is a WCF service with configuration: <services> <service name="MyService" behaviorConfiguration="MyServiceBehavior"> <endpoint binding="basicHttpBinding" ...
6
votes
5answers
2k views

How do I build a secure webservice with .Net?

I need to build a simple webservice to get data in and out of a HR System over the Internet (it's a hosted solution). I am using IIS and ASP.Net with .Net 2.0. Having looked into it, there are ...
6
votes
2answers
10k views

How to call web service using vbscript (synchronous)?

Actually there many examples and I have used one of them. But it works asynchronous, I mean it is not waiting the function that I called to finish. function ProcessSend() Set oXMLHTTP = ...
6
votes
12answers
8k views

Thread Sleep in Classic ASP?

I'm doing some revision on an old app that is written in classic ASP/VbScript. It has a feature to send out an e-mail to the members of the application, but because the member list is quite large, ...
6
votes
4answers
6k views

How to get list of running applications using PowerShell or VBScript

I need to programmatically get a list of running applications as shown in the "Applications" tab inside the Windows Task Manager using PowerShell or VBScript. All I could find so far is how to list ...
6
votes
5answers
3k views

How do I build a collection in classic ASP?

I want to be able to do:For Each thing In things End For CLASSIC ASP - NOT .NET!
5
votes
2answers
73 views

How to get more than 97 rows out of WMI?

I have the following .VBS script, which works, but it only returns the top ±100(97) rows of data. How do I get the full list? On Error Resume Next strComputer = "." Set objWMIService = ...
5
votes
1answer
205 views

Pass Nothing from Javascript to VBScript in IE9

I have a framework written in VBScript. Inside some function in this framework parameter of the function is checked for Nothing in If statement and then some actions executed. Code that uses framework ...
5
votes
2answers
191 views

TreeView in all browsers using JQuery instead of VBScript in ActiveX Control

There is a TreeView which our team has been using now for three or four years which provides our Internet Explorer users the ability to simply view data from both an MS Access database and MSSQL 2005 ...
5
votes
1answer
249 views

How to get the associated icon of a file in HTA (HTML/Javascript/VBScript)

I'm building an HTA application in which I need to display a list of file with their associated system icon. I'm using FileSystemObject to list the file but there seem to have no way to get the ...
5
votes
3answers
224 views

Pass existing FileSystemObject or create multiple instances

I have several procedures that use the FileSystemObject. I find it's quite convenient. Question: Is it sensible to pass an existing instance of FileSystemObject from a "main" procedure to these ...
5
votes
3answers
2k views

VBA MS Excel - Code for looping through all excel files in a specified folder, and pulling data from specific cells

I have about 50 or so excel workbooks that I need to pull data from. I need to take data from specific cells, specific worksheets and compile into one dataset (preferably into another excel workbook). ...

1 2 3 4 5 58