[WiX-users] ComboBox: Default Selection Change

2008-10-20 Thread pavan gadam
Hi all, Is there any event that can track change of the Item selection? I need to display a message when the default selection of comboBox is changed by the user. Thanks, Pavan - This SF.Net email is sponsored by the Moblin

Re: [WiX-users] Fwd: Change Default Selection of ComboBox

2008-10-15 Thread pavan gadam
Did not notice the time i had sent... My apologies for resending that early.. - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great

Re: [WiX-users] Change Default Selection of ComboBox

2008-10-15 Thread pavan gadam
I was able to do it. But is there a way where we can display some message in the dialog when the ComboBox default selection is changed by user, without reloading the dialog using twin dialog. - This SF.Net email is sponsored by

[WiX-users] Fwd: Change Default Selection of ComboBox

2008-10-15 Thread pavan gadam
Resending... Any Help??? -- Forwarded message -- From: pavan gadam <[EMAIL PROTECTED]> Date: Wed, Oct 15, 2008 at 2:18 PM Subject: Change Default Selection of ComboBox To: "General discussion for Windows Installer XML toolset." < wix-users@lists.sourceforge

[WiX-users] Change Default Selection of ComboBox

2008-10-15 Thread pavan gadam
Hi all, I have a ComboBox whose default selection needs to be determined dynamically. I am using Custom Action to populate the items dynamically. But i am not able to set one of the items as default selection of the ComboBox. All the items appear in the combobox when i click on drop down. By def

[WiX-users] Populating Data into List Box.

2008-09-11 Thread pavan gadam
Hi all, I am facing a problem in populating data into ListBox. I am using 2 buttons viz., " Add" and "Remove" to insert and remove Values into ListBox. I am calling a Custom Action to achieve this. After Adding few values into ListBox. If i try to remove any element in the ListBox and then try

Re: [WiX-users] Quiet Execution Custom Action

2008-09-09 Thread pavan gadam
Even when i tried with notepad.exe my installation failed. :-( Actually i need a call powershell psexec.exe I tried with The result is same. :-( Any help on Quiet Installation?? - This SF.Net email is sponsored by the Mo

[WiX-users] Create Website on Remote Machine

2008-09-09 Thread pavan gadam
Hi all, Is it possible to create a Website on remote machine from Wix using IISExtension? I also want to add some webservices into website in the remote machine. Thanks, Pavan - This SF.Net email is sponsored by the Moblin Y

[WiX-users] Quiet Execution Custom Action

2008-09-08 Thread pavan gadam
Hi all, I was trying Quiet Execution feature provided by WixUtilExtension. My Installation failing. Please let me know if there is any error in below code. Thanks, Pavan - This SF.Net email is sponsored by the Moblin Yo

Re: [WiX-users] light.exe crashing with NullReference Exception

2008-09-01 Thread pavan gadam
Adding more detail... This happens when SymbolPath is included in Directory Element. Is this a bug? - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applicatio

[WiX-users] light.exe crashing with NullReference Exception

2008-09-01 Thread pavan gadam
Hi all, The light.exe is crashing with Null Reference Exception. i am currently using latest version of Wix released in Aug 29.(3.0.4429.0) The stack tree is as below: C:\Documents and Settings\pavanga\Desktop\wix-pavan\Wix Sample>light.exe -out Sa mpleWixUI.msi SampleWixUi.wixobj CCFLib\CCFWixU

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] Default website gets removed on Uninstall

2008-08-29 Thread pavan gadam
Hey, I have a similar problem. I am currently using wix 3, in which Directory attribute is compulsary for Website Element. I want to install webservices into the website selected by the user in a comboBox. If user selects a Website say "Default Website", after installation, wix creates another i

[WiX-users] Fwd: C# Custom Action on ComboBox Item Selection.

2008-08-28 Thread pavan gadam
Any help?? -- Forwarded message -- From: pavan gadam <[EMAIL PROTECTED]> Date: Wed, Aug 27, 2008 at 7:44 PM Subject: C# Custom Action on ComboBox Item Selection. To: "General discussion for Windows Installer XML toolset." < wix-users@lists.sourceforge.ne

Re: [WiX-users] Problem with WiX

2008-08-27 Thread pavan gadam
Seems to problem in elements defined within Can you send code snippet? Thanks, Pavan - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK

[WiX-users] C# Custom Action on ComboBox Item Selection.

2008-08-27 Thread pavan gadam
Hi all, I am populating the websites deployed in the machine in a ComboBox. I need to display the port number of the selected website. 1 I am able to get the corresponding port value for the website selected.inCustom Action Code using session["PortEditProp"]=getportvalue(); But, T

[WiX-users] Updating Installer Database through Custom Action

2008-08-26 Thread pavan gadam
Hi, I need to insert values into ComboBox using C# Custom Action. Code snippet string samWeb="abcd"; ses.Database.Execute("INSERT INTO `ComboBox`(`Property`,`Order`,`Value`,`Text`) VALUES ('ComboWebsiteProp'," + "1,'" + samWeb + "','" + samWeb + "')"); I am getting error as Function failed du

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,

[WiX-users] Dynamically Populate ComboBox.

2008-08-25 Thread pavan gadam
Hi, I have ComboBox declared as below. Values need to be get populated based on the code that is written C# Custom Action method. How can this be achieved? Thanks, Pavan - This SF.Net email is sponsored by the Moblin

Re: [WiX-users] Dynamically Pick File Source Location

2008-08-20 Thread pavan gadam
Hi Eitan, Is there any way in which BuildXX can be auto generated apart from DOS Script? Is it possible with Visual Studio specific Variable? Thanks, pavan - This SF.Net email is sponsored by the Moblin Your Move Developer's

Re: [WiX-users] Dynamically Pick File Source Location

2008-08-20 Thread pavan gadam
Hi Eitan, I am building my Wix Solution through Batch File. To get that number i will have to scan through the directory and find BuildLatest. If there is complicated logic involved to find Buildlatest later then would it not be problem to handle it through DOS commands. Thanks, pavan -

Re: [WiX-users] Dynamically Pick File Source Location

2008-08-20 Thread pavan gadam
But how to you set this env variable? I want to write a C# Custom Action. Is it possible in Custom Action to fetch env variable and set it? How do you declare System Environment variable? Thanks, Pavan - This SF.Net email is

[WiX-users] Dynamically Pick File Source Location

2008-08-20 Thread pavan gadam
Hi all, We have a requirement where Builds are getting generated in with increment in Folder Names. (like Build001, Build002). I need to make Source Dynamically pick up proper Higher Build. How to go about it? Thanks, Pavan

Re: [WiX-users] Wix Pre-requisite Dialog

2008-08-18 Thread pavan gadam
Hi , I want to display a control depending on the value of the property. I tried this below: Even if registry search fails the label is getting displayed. I suspect the property IISCHECK is interpretted as literal rather than as a property. I am doing this display in dialog whether the pre

Re: [WiX-users] Wix Pre-requisite Dialog

2008-08-12 Thread pavan gadam
> > > Subject: Wix Pre-requisite Dialog > Hi all, > > I wanted to create a pre-requisite dialog box which show whether particular > components are Installed or not in Wix. > > I was able to get the Registry value into a property IISCHECK > > > < > Property Id="IISCHECK"> > > < > RegistrySearch Id=