Re: [WiX-users] Building a connection string RegistryValue

2008-06-03 Thread Tim Fisher
Nevermind, I got it. I used this string "{Data Source=[DBSERVERNAME];[[USEINTEGRATEDSECURITY]]}" as my connection string, the listbox switches USEINTEGRATEDSECURITY between either IntegratedSecurity or NotIntegratedSecurity. Then IntegratedSecurity property gets "Integrated Security=SSPI" while the

Re: [WiX-users] Building a connection string RegistryValue

2008-06-03 Thread Tim Fisher
OK, so I need a CustomAction that assigns to CONNECTIONSTRING property from a number of different properties. If the user selected IntegratedSecurity, then I want to assign it the string "{Data Source=[DBNAME];Integrated Security=SSPI;}". If the user selected NotIntegratedSecurity, then I want to a

Re: [WiX-users] Building a connection string RegistryValue

2008-06-03 Thread Bob Arnson
Tim Fisher wrote: > Type="string" > Value="{Data Source=[DBSERVERNAME];[[USEINTEGRATEDSECURITY]]}" > /> ... > > > > > USEINTEGRATEDSECURITY is assigned to a listbox, which switches it > between "IntegratedSecurity" and "NotIntegratedSecurity"