View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Charlie Charlie is offline
external usenet poster
 
Posts: 703
Default Hide "Excel" when running VB

....or if you are debugging your app and break out, same thing... You will
need to go into Task Manager (Ctrl+Alt+Del), find the EXCEL.EXE under
Processes tab and click <End Process

"Jim Thomlinson" wrote:

application.visible = false

Careful with this though. Make sure you have proper error handling. If your
code crashes... Your excel will not come back...

HTH

"Old Car" wrote:

Is there a way to hide "Excel" when its VB code is running? Thanks.