09/05/2020, 11:18
Login formunda şu kod ile
![[Resim: do.php?img=10180]](https://resim.accesstr.net/do.php?img=10180)
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