Is there a way to disable close, minimize and restore in an exce workbook by using VBA
K kristing Jun 4, 2004 #1 Is there a way to disable close, minimize and restore in an exce workbook by using VBA
M Michel Pierron Jun 4, 2004 #2 Hi kristing, Private Sub Workbook_Open() Application.ThisWorkbook.Protect Windows:=True End Sub Regards, MP
Hi kristing, Private Sub Workbook_Open() Application.ThisWorkbook.Protect Windows:=True End Sub Regards, MP