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

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

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
Textbox Formatını Değiştirmek - Yazar: accessman - 09/05/2020, 11:18
RE: Textbox Formatını Değiştirmek - Yazar: feraz - 09/05/2020, 12:41