Disabling Close, minimize, and restore

K

kristing

Is there a way to disable close, minimize and restore in an exce
workbook by using VBA
 
M

Michel Pierron

Hi kristing,

Private Sub Workbook_Open()
Application.ThisWorkbook.Protect Windows:=True
End Sub

Regards,
MP
 
Top