How do i get the ****** to appear insted of text when it is an inputbox? and not a box inside a form. here is the code i am using
[code=vb]
Public Function bDisableBypassK ey_Click()
'This allows a programmer to set the password via a button while accessed in the program.
Dim strInput As String
Dim strMsg As String
strMsg = "Do you want to enable the Bypass Key?" & vbCrLf & vbLf & _
"Please key the programmer's password to enable the Bypass Key."
strInput = InputBox(Prompt :=strMsg, Title:="Disable Bypass Key Password")
If strInput = "Password" Then
SetProperties "AllowBypassKey ", dbBoolean, True
MsgBox "The Bypass Key has been enabled."
Else
SetProperties "AllowBypassKey ", dbBoolean, False
MsgBox "If you dont know the password you probably shouldnt be here!", vbExclamation, "!WRONG!"
End If
End Function
[/code]
Thanks in advance for any help.
[code=vb]
Public Function bDisableBypassK ey_Click()
'This allows a programmer to set the password via a button while accessed in the program.
Dim strInput As String
Dim strMsg As String
strMsg = "Do you want to enable the Bypass Key?" & vbCrLf & vbLf & _
"Please key the programmer's password to enable the Bypass Key."
strInput = InputBox(Prompt :=strMsg, Title:="Disable Bypass Key Password")
If strInput = "Password" Then
SetProperties "AllowBypassKey ", dbBoolean, True
MsgBox "The Bypass Key has been enabled."
Else
SetProperties "AllowBypassKey ", dbBoolean, False
MsgBox "If you dont know the password you probably shouldnt be here!", vbExclamation, "!WRONG!"
End If
End Function
[/code]
Thanks in advance for any help.
Comment