Starting a VBA Macro in Excel using VBScript

Wouter1234

New Member
Joined
Aug 16, 2007
Messages
1
I am trying to start a VBA Macro in Excel using a VBScript in my browser.

Below you can see my - not working - chunk of code.

All suggestions are welcome!


Code:
<HTML>
<HEAD><TITLE>Test</TITLE>
<SCRIPT LANGUAGE="VBScript">
<!--

Sub Test()

Dim fso, f1
Set fso = CreateObject("Scripting.FileSystemObject")
Set f1 = fso.GetFile("c:\Test.xls")

Application.Run "Test.xls!Macro.Macro"

End Sub


-->
</SCRIPT>
</HEAD>
<BODY>
<H3>Push the button to start the script.</H3><HR>
<FORM><INPUT NAME="Button1" TYPE="BUTTON" VALUE="Start"></FORM>
</BODY>
</HTML>


Thanks in advance.

Bye!

Wouter1234
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.

Forum statistics

Threads
1,214,635
Messages
6,120,660
Members
448,975
Latest member
sweeberry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top