Skip to main content

AccessTr.neT


Textbox Formatını Değiştirmek

Textbox Formatını Değiştirmek

Çözüldü #1
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
[Resim: do.php?img=10180]
@benbendedeilem
Cevapla
#2
Text0.InputMask = "Password"
şeklinde imiş
@benbendedeilem
Cevapla
#3
(09/05/2020, 11:25)accessman yazdı:
Text0.InputMask = "Password"
şeklinde imiş
Bunu ben bile öğrenmiştim Img-grin
Ayrıca özelliklerede Password yazarsanda olur abey.
Cevapla
#4
Göze tıklayınca değişmesi gerek
@benbendedeilem
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da
Task