You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the control has been created, these styles cannot be modified, except as noted.
Seems to be necessary to use the SendMessage EM_SETPASSWORDCHAR
So I modify the Let InputIsPasseword this way
Public Property Let InputIsPassword(bVal As Boolean)
If hEditBox Then
If bEditPassword <> bVal Then
If bVal Then
SendMessageW hEditBox, EM_SETPASSWORDCHAR, 9679, 0& '9679 for blackdot, else Asc("whatEverYouWant")
Else
SendMessageW hEditBox, EM_SETPASSWORDCHAR, 0&, 0&
End If
SetFocusAPI hEditBox 'necessary to get the change visible
End If
End If
bEditPassword = bVal
End Property
The text was updated successfully, but these errors were encountered:
Hi, and thanks a lot for this amazing program
I use a verification check to toggle "show in clear/show black dot" in a password dialog
But Let InputIsPasseword don't modify the inputbox
Mr Microsoft says : https://learn.microsoft.com/en-us/windows/win32/controls/edit-control-styles
Seems to be necessary to use the SendMessage EM_SETPASSWORDCHAR
So I modify the Let InputIsPasseword this way
The text was updated successfully, but these errors were encountered: