I have a xlsm workbook and with 2 sheets, I call it as workbook 1, sheet 1 is visible, sheet 2 is set as xlsheetveryhidden. And then vbe password setted.
Now the situation should be no one can unhide sheet 2 manaually, right?
Now I open another workbook, I call it as workbook 2, open vbe at workbook 2, and simply type the following codes and aim to workbook 1, sheet 2 is visble:
Sub InvisibleSheet2Fails()
Sheets(2).Visible = xlSheetVisible
End Sub
My question is: How can I unhide my sheet 2 ONLY with workbook 1 vbe password? workbook 2 doesn't know the workbook 1 vbe password but can easily bypass xlsheetveryhidden setting.
Thank you very much!
Lawrence