: : : Hi,
: : : I like to use inputbox for login in form.So is there any way that when user types his password in inputbox it should not Display letters insted it should Display like ***** .
: : :
: : : Help me
: : : Ganesh :)
: : :
: :
: : there is a PasswordChar property of an input box. just change the PasswordChar to "*" and only astericks will show up. you can either do this at design time in the Properties menu (which would be the best way to do it) or at run time like this:
: :
: :
: : Text1.PasswordChar = "*"
: :
: :
:
: hi,,,, with regards to this concern, i know its possible to use a different character like the one being used in the login of windows xp.
: do you have any ideas...
:
: thanks mhyke
:
Try this on form load:
Text1.FontName = "courier new"
Text1.FontSize = 12
Text1.FontBold = True
Text1.PasswordChar = Chr(149)
Mike