You can certainly do that. One thing to be aware of is if you create a text box you can go to properties and one of your choices is PasswordChar where you can set a character such as ***, so that when someone is typing the password you only see the characters. I think worksheet activate is a good event to use to display the form. If they deactivate the form you could have code run to re-protect the sheet and set the password again.
Here's some sample code:
Private Sub CommandButton1_Click()
On Error GoTo ErrorHandler
Worksheets("Sheet1").Unprotect Password:=TextBox1.Text
UserForm1.Hide
Exit Sub
ErrorHandler:
If Err.Number = 1004 Then
MsgBox "Invalid password"
TextBox1.Text = ""
TextBox1.SetFocus
End If
End Sub
Private Sub Worksheet_Activate()
UserForm1.Show
UserForm1.TextBox1.Text = ""
UserForm1.TextBox1.SetFocus
End Sub
Private Sub Worksheet_Deactivate()
Me.Protect "password"
End Sub
Bookmarks