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

[WiX-users] Need help on with WIX unistall

2008-08-31 Thread Nimisha Saboo
Hi, I have a Wix project, which currently allows multiple installs of my application, although I have done nothing to enable this. What this means is: I install my application, and then again click on the msi. Ideally, it should start an uninstall of my application, but currently it starts another

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] Adding files to msi

2008-08-31 Thread dB.
My first obvious question is: why would you want to do this? ... now to the how ... I think you should start here: http://msdn.microsoft.com/en-us/library/aa369279(VS.85).aspx. An MSI is a database. You need to add a row for each file in the File table. Notice the Component_ column and stuff lik

Re: [WiX-users] Detecting Quiet Mode

2008-08-31 Thread dB.
I believe the "right" way of doing this is to add the launch of the application in the InstallUISequence. If the InstallUISequence is not run, you don't have any UI, that's silent install. -dB. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of taras Sent: W

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] util:CloseApplication - how do I use it

2008-08-31 Thread Neil Sleightholm
Bob I'm afraid the fix in v3.0.4429.0 doesn't work. It will now stop minimised .Net applications but not vb6 application whether they are minimised or not. Would you like me to submit a bug for this with a sample? Neil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [WiX-users] Resolving environment variables

2008-08-31 Thread Ryan O'Neill
Special folders are fairly easy, search the WiX docs for LocalAppDataFolder and AppRootDirectory. For example; Ryan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Meyer Sent: 31 August 2008 18:38 To: wix-users@lists.sourceforge.net Subject:

[WiX-users] Resolving environment variables

2008-08-31 Thread Chris Meyer
Hi all, I'm making an installer that needs to install inside %userprofile%\AppData\Local\... Is there a way to resolve environment variables or Environment.SpecialFolders in WiX? Thanks, -- chris - This SF.Net email i

[WiX-users] Licensing and distribution query

2008-08-31 Thread Sean Farrow
Hi: I am trying to use some on the customaction libraries (wca, and dutil) with codegear in a series of articles I'm writin regarding wix for a jounal focusing on c++ builder. Th issue I have is c++ builder use omf rather than cof files. What's the situation with re-compiling and distribution libr

[WiX-users] DTF DoAction throw exception

2008-08-31 Thread Dmitry Berkovich
Hi, I developed my custom action, where I passing to CA some properties. Part of properties is from byte[] type. Exception is thrown when DoAction is called where CustomAtionData contains properties with size 54K or more (i didn't check what is exactly minimal size is needed). System.Reflection