Ho fatto dei test e ahimè purtroppo hai ragione. Cmq ho notato che per il mio db comportava altri problemi (adesso non sto a spiegare tutto altrimenti tocchiamo altri argomenti), dunque ho abbandonato l'idea.
Volendo però pensare di realizzare un qualcosa simile, dopo aver letto il link che mi hai postato, può essere che bisognerebbe codificare così come riporto?
Private Sub ViewPassword_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = acLeftButton Then
Me.txtPassword.InputMask = ""
else
?????????????
end if
End Sub
Private Sub ViewPassword_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = acLeftButton Then
Me.txtPassword.InputMask = "Password"
else
??????????????
end if
txtPassword.SetFocus
End Sub