Top "Vbscript" questions

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

Calling WCF service by VBScript

There is a WCF service with configuration: <services> <service name="MyService" behaviorConfiguration="MyServiceBehavior"> <endpoint binding="…

wcf vbscript msxml
Server-side comments: What's the equivalent of <%-- --%> in ASP Classic?

What's the equivalent of <%-- --%> in ASP Classic? I have to modify a legacy ASP application and …

vbscript asp-classic
How to print directly to label printer from Internet Explorer without prompt

I have a mysql database containing upc numbers that I would like to print to labels with a zebra printer (…

javascript vbscript zebra-printers
How to launch a batch file from within an HTA

I have a basic HTA in which I am trying to launch a batch file via a button, however when …

vbscript batch-file cmd hta
Close Open Excel Instance

Could someone please let me know if the following simple VBScript is correct? It is supposed to close Excel after …

vbscript excel.application
How to call C# DLL function from VBScript

I have my script on server, so I do not have UI interaction available and have to use DLL instead …

c# dll vbscript function-calls
Sending Outlook Email with embedded image using VBS

I am currently using the following VBS script to send an email and it works fine, however the image is …

email vbscript outlook html-email outlook-2007
LibreOffice / OpenOffice Calc: VBscript, export of XLS sheets to CSV

I'm trying to write a script for a while now but it seems that one part of it just does …

csv vbscript xls libreoffice openoffice-basic
Why does VBScript say "Invalid Character" when using ExecuteGlobal to import a .vbs function library file?

I am encountering a "Invalid Character" error in my VBscript! In particular, within this block of code: '******************************************************************* 'Import Code …

character-encoding vbscript import importerror invalid-characters
Select Case With Conditions ( Classic ASP)

<% i=2 Select Case i Case 1,2,3,4,5,7,8,9,10 response.write("Grade A") Case 11,12,13,14,15,16,17,18,19,20 response.write("Grade B") Case 21,22,23,24,25,26,27,28,29,30 response.write("Grade C") …

vbscript asp-classic select-case