Sunday, May 13, 2007

Hiding Excel


You can hide the Excel application with this macro. This disables the user from using the excel menus. Don't forget to set it back to visible.

Sub HideExcel()
Application.Visible = False
End Sub

1 comment:

  1. This doesn't simply disable the menus.
    This hides completely the Excel window.
    If you leave the VBA window open you could restore the Excel Window, otherwise you would have to kill the Excel process with the task manager.

    ReplyDelete