Wix : Installer password with testboxesA

Add-in Express™ Support Service
That's what is more important than anything else

Wix : Installer password with testboxesA
 
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
Posted 31 Mar, 2016 18:09:18 Top
Andrei Smolin


Add-in Express team


Posts: 18810
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
Posted 01 Apr, 2016 03:17:40 Top