David Steadman
Guest
|
not sure if I am missing something but I want to make a textbox look like a password and not clear text
I don't see that in the properties EDITA1 only to make it visible or not |
|
Andrei Smolin
Add-in Express team
Posts: 18652
Joined: 2006-05-11
|
Hello David,
There's no out-of-the-box support for this. Still, you can customize StandardUI.wxs:
<Control Id="Label2" Type="Text" X="18" Y="144" Width="348" Height="12" Text="{VSI_MS_Sans_Serif13.0_0_0}Password:" TabSkip="no" />
<Control Id="Edit2" Type="Edit" X="18" Y="156" Width="348" Height="18" Text="{VSI_MS_Sans_Serif13.0_0_0}" TabSkip="no" Property="EDITA2" Password="yes" />
Andrei Smolin
Add-in Express Team Leader |
|