Here is my dilemma. The following code snippet listed below depicts an object variable name "xlobject" that holds an instance of "Excel.Application". At this point in the code, I have one workbook assigned to the "xlobject" (meaning that xlobject.workbooks.count = 1). The first line of code...
Can anyone help me find the VBScript eqivalent of the VBA code listed below? I'm pretty sure VBScript does not support named arguments, so I'm even wondering if this is even possible. Here it is:
Sub Macro2()
Sheets("Sheet1 (2)").Select
Sheets("Sheet1 (2)").Copy...
The code snippet below works under NT, but is failing when I run this in Windows XP:
'copy current invoice to the master invoice
'workbook, place at beginning of workbook
xlsheet.Copy(xlMasterWorkbook.Sheets(1))
if err.number <> 0 then
MsgBox "Error " & Err.number & ": " & Err.description...
I am currently working on an .asp application that manipulates
Excel from a web page using VBScript. The application
works fine on an NT platform, but it needs to be modified to
work under Windows XP. I am having problems with the section
of code described below. Here is what is happening...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.