Make Excel Invisible and Hide ExcelThe code makes excel invisible for 10 seconds and then excel will get visible again.
ExplanationThe code makes excel invisible for 10 seconds, this might be useful in some situations, and then excel will get visible again. The entire program will be invisible thus make sure to make excel visible again because otherwise you will not be able to change this setting back without terminating the program in other ways. The entire VBA Excel program is available for downloading at the bottom of this web page, enjoy!
CodePublic Sub HideExcelMakeExcelInvisible()
’Makes the excel invisible. Application.Visible = False
’In order to be able to get back to excel there is a waiting time for 10 seconds then the application will be visible again. Application.Wait Now + TimeValue("00:00:10")
’Makes the excel visible again. Application.Visible = True
End Sub
Download excel file! Make_Excel_Invisible_And_Hide_Excel.xls |