G
Greg Ripper
Here is the code I use as a password for my Database. Basically I am trying
to keep honest people honest, as you can see by the code.
Dim sPassword As String, sAccess As String
sAccess = "admin"
sPassword = InputBox("PLEASE ENTER THE PASSWORD", "PASSWORD")
If sPassword <> sAccess Then
Cancel = True
Else
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmAdmin"
DoCmd.OpenForm stDocName, , , stLinkCriteria
End If
When you type the password, however, everyone can see what you are typing.
Is there a way to hide what is being typed, with stars or something?
Rip
Rip
to keep honest people honest, as you can see by the code.
Dim sPassword As String, sAccess As String
sAccess = "admin"
sPassword = InputBox("PLEASE ENTER THE PASSWORD", "PASSWORD")
If sPassword <> sAccess Then
Cancel = True
Else
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmAdmin"
DoCmd.OpenForm stDocName, , , stLinkCriteria
End If
When you type the password, however, everyone can see what you are typing.
Is there a way to hide what is being typed, with stars or something?
Rip
Rip