Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VBscript commands for Excel 1

Status
Not open for further replies.

BdR

Programmer
Sep 19, 2003
1
NL
Is there some sort of reference where I can find al the commands that I can use in VBscript to handle an Excel sheet?

Thanks
 
If you're confident with VBA for Excel, you can use OLE automation to handle your workbook with VBS, keeping in mind the few diffs between this two flavors of VB.
Mainly in VBS you can't use typed var nor Goto instruction.
Feel free to do a keyword search in this forum for excel.

Hope This Help
PH.
 
i also need some reference to some vbscript that can be used in excel. i use the Response.ContentType = "application/vnd.ms-excel" to display a table in an excell spreadsheet. i also make one of the cells a hyperlink, but the problem i am having is i cannot get the hyperlink to open in a new window. i guess my question is, does excel understand the properties of the html anchor tag? i use the target=_blank, but it still opens in the same window.
 
something i found today, if you look in c:\program files\microsoft office\office\1033 you will find a load of vba help files. each one is the object model for each application!!!! fantastic

regards,
vonmoyla
 
Would anyone know how to do ErrorHandler on VB within Excel? Since Goto statements are not allowed, I'm not sure what to do to handle error cases...
 
Hello SolidFish,

You can take a look at the thread(329,698824) for idea on the general building block of error-handling.

regards - tsuji
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top