Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Visual Basic > VB.NET 1.0 > VB.NET 2002/2003 Basics
|
VB.NET 2002/2003 Basics For coders who are new to Visual Basic, working in .NET versions 2002 or 2003 (1.0 and 1.1).
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VB.NET 2002/2003 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 4th, 2007, 05:01 AM
Friend of Wrox
 
Join Date: Jan 2007
Posts: 115
Thanks: 2
Thanked 0 Times in 0 Posts
Default execute an excel macro via a .vbs file

Hi, i need help please.

I have a vbs file where i want to execute an excel macro on a file
i don't really know vb as i want to execute the file via cmdline.
i have a code i got off the net but it does not work.
Can anyone please help, Thanking you in anticipation

********* Code **********

Dim objExcel, objWb

On Error resume next

    sFilename = "c:\deals exceptions.asc"


    'Suppress errors and warnings
    Set objExcel = Wscript.CreateObject("Excel.Application")

    Set objWb = objExcel.WorkBooks.Open(sFilename)


   objExcel.run("C:\Documents and Settings\ismailc\Application Data\Microsoft\Excel\XLSTART\PERSONAL.XLS!Macro2")


objWb.Close
objExcel.Quit
objExcel.DisplayAlerts = True
Set objExcel = Nothing
Set objWb = Nothing

*****************

 
Old January 11th, 2007, 04:19 PM
Friend of Wrox
 
Join Date: Nov 2004
Posts: 1,621
Thanks: 1
Thanked 3 Times in 3 Posts
Default

What does happen when you run this? (Do you get an error message?)

What kind of file has a “.asc” extension? That’s not a workbook, is it?





Similar Threads
Thread Thread Starter Forum Replies Last Post
Save a file in CSV format thru Excel VBA macro roli2712 Excel VBA 1 July 11th, 2007 03:05 AM
Execute VBS files via ASP.NET (VB.NET) Mario_Steiner ASP.NET 1.0 and 1.1 Professional 0 November 9th, 2005 07:49 AM
vb macro output file to excel mateenmohd VBScript 0 March 21st, 2005 12:34 AM
Execute *.exe in vbs kodakodu VBScript 1 November 22nd, 2004 03:33 AM
How do I execute / run an Access Macro Dean Hewitt Access ASP 0 February 11th, 2004 05:35 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.