Textbox Formatını Değiştirmek

09/05/2020, 11:18

accessman

Login formunda şu kod ile
Private Sub pwd_hide_Click()
    Me.txtPassword.SetFocus
    passwordShowHide
End Sub

Private Sub pwd_show_Click()
    Me.txtPassword.SetFocus
    passwordShowHide
End Sub

Private Sub passwordShowHide()
    If (pwd_show.Visible = True) Then
        pwd_show.Visible = False
        pwd_hide.Visible = True
        Me.txtPassword.Format = "Password"
    Else
        pwd_show.Visible = True
        pwd_hide.Visible = False
        Me.txtPassword.Format = ""
    End If
End Sub
şifreyi gizleyip göstermek istiyorum ama olmadı nasıl yazmam lazım

09/05/2020, 11:25

accessman

Text0.InputMask = "Password"
şeklinde imiş
09/05/2020, 12:41

feraz

(09/05/2020, 11:25)accessman yazdı:
Text0.InputMask = "Password"
şeklinde imiş
Bunu ben bile öğrenmiştim Ayrıca özelliklerede Password yazarsanda olur abey.
09/05/2020, 13:49

accessman

Göze tıklayınca değişmesi gerek