calling an external vbs file on the worksheet close operation

  • Thread starter Gordon Cashmore
  • Start date
G

Gordon Cashmore

How do I program to run a file called close.vbs when an excel sheet is
closed.

Thanks for the help

gordo
 
S

Steve Yandl

Try this (adjust the path for "close.vbs" of course)

Private Sub Workbook_WindowDeactivate(ByVal Wn As Window)
Shell "C:\WINDOWS\SYSTEM32\WScript.exe C:\Test\close.vbs"
End Sub

Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top