Search results

  1. S

    UnMask the Password on Form Using Command Button

    Here is the code: Option Compare Database Private Sub btnPassward_Click() If Me.btnPassward.Caption = "Hide" Then Me.txtPassword.InputMask = True Me.btnPassward.Caption = "Show" Me.Form.TimerInterval = 5000 Else Me.txtPassword.InputMask = "Password" Me.Form.TimerInterval = 0...
  2. S

    UnMask the Password on Form Using Command Button

    Hi Everyone, I have used the code in my application and it worked perfect. but i would like to have the password textbox go back to the password input mask after timer 5-10 seconds.
Back
Top Bottom