View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Sharad Sharad is offline
external usenet poster
 
Posts: 123
Default Running excel as an application

Since it is VBA, it will need excel to run, to run your program. You
can't make it an stand alone application as such. For that you could
have done the code in stand alone VB.

What however you can do is hide 'that' workbook. In the Workbook_Open
procedure add following line at the top:

Application.Windows(Me.Name).Visible = False

Sharad

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!