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 = FalseEnd Sub
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.
Subscribe for FREE Excel Items:
E-mail:
This doesn't simply disable the menus.
ReplyDeleteThis 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.