Re: [WiX-users] WIX ComboBox default value

2014-03-29 Thread geshete
Thank you all for your reply. This has fixed the issue. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-ComboBox-default-value-tp7593832p7593847.html Sent from the wix-users mailing list archive at Nabble.com. ---

Re: [WiX-users] WIX ComboBox default value

2014-03-28 Thread Pavan Konduru
-users@lists.sourceforge.net Subject: Re: [WiX-users] WIX ComboBox default value Another dialog for user credentials. If the user credentials is validated, it opens the dialog that contains the comboBox. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com

Re: [WiX-users] WIX ComboBox default value

2014-03-28 Thread geshete
Another dialog for user credentials. If the user credentials is validated, it opens the dialog that contains the comboBox. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-ComboBox-default-value-tp7593832p7593842.html Sent from the wix-users mai

Re: [WiX-users] WIX ComboBox default value

2014-03-28 Thread Pavan Konduru
What is the UI dialog that comes before the Dialog that contains this ComboBox? -Original Message- From: geshete [mailto:getyetesf...@yahoo.com] Sent: Friday, March 28, 2014 2:43 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] WIX ComboBox default value Thank you for

Re: [WiX-users] WIX ComboBox default value

2014-03-28 Thread geshete
Thank you for your replay. I used WIX_UPGRADE_DETECTED property to disable the combox for MajorUpgrade. That works fine. But how can I assign the Property of ComboBox to "DefaultValueID" instead of ITEMNAME for MajorUpgrade. it should be something like this. if (WIX_UPGRADE_DETECTED) http://wi

Re: [WiX-users] WIX ComboBox default value

2014-03-28 Thread Carter Young
Try List Item Value =1, ie leave off the text attribute. If it still complains try ListItem w/ nothing and as a last resort write "None Selected" as the text property. Carter Quoting geshete : > I got this error message: > The ListItem/@Text attribute's value cannot be an empty string. If a

Re: [WiX-users] WIX ComboBox default value

2014-03-28 Thread Pavan Konduru
Add the condition for enable also and try: NOT WIX_UPGRADE_DETECTED -Original Message- From: geshete [mailto:getyetesf...@yahoo.com] Sent: Friday, March 28, 2014 2:03 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] WIX ComboBox default value I would like to disable and sh

Re: [WiX-users] WIX ComboBox default value

2014-03-28 Thread geshete
I got this error message: The ListItem/@Text attribute's value cannot be an empty string. If a value is not required, simply remove the entire attribute -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/WIX-ComboBox-default-value-tp7593832p7593835.ht

Re: [WiX-users] WIX ComboBox default value

2014-03-28 Thread Carter Young
Try: Quoting geshete : > I would like to disable and show default value for the ComboBox if it is > MajorUpgrade. otherwise enable ComboBox and no item should be selected just > show the list when dropdown is selected. > ---