請問要如何改下列程式碼
才能變成 一開啟excel時自動隱藏所有sheet
輸入正確得密碼之後 才會解除隱藏的sheet
程式碼如下
Private Sub Workbook_Open() '啟動程式
Dim x
x = InputBox("請輸入帳號密碼")
If x = "309" Then '設定密碼為 309
For i = 1 To Sheets.Count '由系統開啟工作表的隱藏
Sheets(i).Visible = True '取消工作表的隱藏
Next
Else
MsgBox "密碼錯誤", 0 + 16, "錯誤訊息"
Me.Close 0 '無法開啟時工作表繼續隱藏
Application.Quit
End If
End Sub