Formdocs has given me the following code. What I am trying to accomplish is make the form undeleteable without a password. While the code kinda works all you have to do it select cancel and you can delete the record. any Ideas other than go back to class and pay attention
Const PW = "nimda"
Dim sInput As String
sInput = InputBox("Enter Password to Open: ")
If (sInput <> PW) Then
Beep()
Msgbox ("Invalid password, cannot Open...")
Cancel = True
End If
Thanks in advance