Re: [WiX-users] Dynamically Populate ComboBox.

2009-04-08 Thread mhdzaki
Hi, I will really appreciate if you share your code sample with me. I am also trying to do similar process at the time of installation I like select different site and then different path to create a new Virtual Root. Thanks! Hey, I was able to figure out populating the Websites in ComboBox.

Re: [WiX-users] Dynamically Populate ComboBox.

2008-08-31 Thread Eitan Behar
Hi, You can use the element SetDirectory to change the target directory for your webite. Rgrds, Eitan On Mon, Sep 1, 2008 at 8:34 AM, pavan gadam <[EMAIL PROTECTED]> wrote: > Hey, > > I was able to figure out populating the Websites in ComboBox. > > The could write the C# equivalent code for the

Re: [WiX-users] Dynamically Populate ComboBox.

2008-08-31 Thread pavan gadam
Hey, I was able to figure out populating the Websites in ComboBox. The could write the C# equivalent code for the same. But, I am facing other problem now. When user selects a particular website from the combobox, I want to install my webservices into that website. Is there any way i can change

Re: [WiX-users] Dynamically Populate ComboBox.

2008-08-31 Thread dB.
You have to do this with a custom action. I've done this in C++, I am sure it's a little easier with DTF (C#). Get the database via MsiGetActiveDatabase() MsiDatabaseOpenView of SELECT * FROM ComboBox` WHERE `Property`='PROPERTY_ATTACHED_TO_COMBOBOX' For each record you want to insert do someth

Re: [WiX-users] Dynamically Populate ComboBox.

2008-08-25 Thread pavan gadam
Hey, But i can retrive the list only @ the time of installation depending on the machine on which i am installing. I wanted to populate in combobox all the websites that are deployed on the Machine. Thats why i had to resort to Custom Action. I need to populate the comboBox in runtime. Thanks,

Re: [WiX-users] Dynamically Populate ComboBox.

2008-08-25 Thread Chad Miles
Put in some listitem elements... On Mon, Aug 25, 2008 at 4:51 AM, pavan gadam <[EMAIL PROTECTED]> wrote: > Hi, > > I have ComboBox declared as below. > > Property ="ComboProp"> > > > > > > > Values need to be get populated based on the code that is written C# Custom > Action method. > > How c