[WiX-users] Edit text and button state.

2008-09-22 Thread Sergey Abakumoff
Hello, I am trying to implement the following feature: There are the edit text and push button text in the dialog. I want to have the button disabled if the text field is empty but once end-users starts entering the text, enable the button. if the text is edited and becomes empty, disable the

Re: [WiX-users] problem with cultures:de-de and xml

2008-09-22 Thread Arthur Curvello
You should write into the german wxl (wixui_de-de.wxl) file lines like these: String id=msierrXmlFileFailedSaveThe installer failed to save the xml file/String (something like this,but in german of course) -- Arthur Curvello ConvergĂȘncia Latina tel: +55 21 2494-5476 email: [EMAIL PROTECTED]

Re: [WiX-users] Patch creation problems

2008-09-22 Thread Scott Sam
When I double click on my msp file I get the welcome dialog, followed by the maintenance dialog, giving me the choice to change, repair or remove. Choosing repair or change, will cause the patch to show up in add/remove programs, but the text file does not show the changes that I made. Problem

[WiX-users] Deploy SQLCMD Utility from msi

2008-09-22 Thread sujanakar reddy
Hi, I am developing an MSI using WIX 3.x. I want to deploy the SQL Serve Command line query tool from my installer package. I have downloaded the same from http://www.microsoft.com/downloads/details.aspx?FamilyID=50B97994-8453-4998-8226-FA42EC403D17amp;displaylang=endisplaylang=en: I got the

[WiX-users] Need help with WIX unistall

2008-09-22 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

Re: [WiX-users] problem with cultures:de-de and xml

2008-09-22 Thread Neil Sleightholm
Not all string are translated (especially in custom actions), I have found the best solution is to allow the linker to pick up the English version if the localised version is missing. To do this use the following command line option: -cultures:de-de;en-us Neil -Original

Re: [WiX-users] WiX-users Digest, Vol 27, Issue 36

2008-09-22 Thread Robert O'Brien
fyi - in my wix sources I'm able to successfully set/use util:xmlfile elementpath values with attribute search qualifiers using the following escaping syntax. util:XmlFile ... ElementPath='//[EMAIL PROTECTED]third\]'/ You can use alternatively: util:XmlFile ... ElementPath=//[EMAIL

Re: [WiX-users] Deploy SQLCMD Utility from msi

2008-09-22 Thread Rob Mensching
You can't nest MSI installs like that. See the archive for discussions about 'chainers'. -Original Message- From: sujanakar reddy [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2008 09:31 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Deploy SQLCMD Utility from msi Hi,

Re: [WiX-users] Need help with WIX unistall

2008-09-22 Thread Rob Mensching
Ensure your Product/@Id, Product/@UpgradeCode and Upgrade elements follow the MSI SDK suggestions for Major Upgrades. -Original Message- From: Nimisha Saboo [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2008 09:55 To: WiX-users@lists.sourceforge.net Subject: [WiX-users] Need help

Re: [WiX-users] Need help with WIX unistall

2008-09-22 Thread Neil Enns
Alex's blog entry at http://blogs.technet.com/alexshev/archive/2008/02/15/from-msi-to-wix-part-8-major-upgrade.aspx is a good starting point. Neil -Original Message- From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2008 10:40 AM To: General discussion for

Re: [WiX-users] MsiGetProperty failed on new CA

2008-09-22 Thread Wilson, Phil
That's irrelevant. It's like saying my code worked on XP why doesn't it work on Vista? You have to give us more information than a fragment of code and the assertion that it worked an old install but not in the new. As Bob says, you must have an immediate custom action in your sequence that

[WiX-users] Problem Loading WiX Project in VisualStudio 2005

2008-09-22 Thread Norman Tiedemann
Hello, I am new to WiX. I am trying to install the tool in MS Visual Studio 2005 Professional on a two different new systems. I did install Visual Studio 2005 SP1 and the security updates for SP1 on each of the systems. I installed the following files: ProjectAggregator2-3.0.4318.0.msi

[WiX-users] Browse / Install Directory dialog not appearing for WixUI_FeatureTree, WixUI_Advanced or WixUI_Mondo

2008-09-22 Thread Mark Savoy
Hi, Showing Browse / Install Directory with WixUI_FeatureTree or WixUI_Advanced or WixUI_Mondo doesn't work? Is there anything that I need to do to allow the Browse dialog to show? I can only get it to display only if I use WixUI_InstallDir but in that case I can't have a feature selection

Re: [WiX-users] ServiceConfig Has anybody got this to work??

2008-09-22 Thread CHarker
Rob I have to Uninstall each time otherwise I get something along the lines of Application already installed. Also if I change the account info I get a different SID not found for XXX where XXX is the new account I entered. Without the PermissionEx I get Permission denied every time. If it

Re: [WiX-users] SQL Server 2008

2008-09-22 Thread Ryan O'Neill
The only thing I can see from decoding that error is that you are trying to insert Null values into a column. Has the schema changed? I converted the error code (-2147217900) into hex (80040E14), removed the sign (80040E14) and got lots of Googles about Null insert issues (see

Re: [WiX-users] Browse / Install Directory dialog not appearing for WixUI_FeatureTree, WixUI_Advanced or WixUI_Mondo

2008-09-22 Thread MarekS
Excuse me while I have a short conversation with myself, with the hopes that my posts to myself will in fact help another new user of the wix system...it seems posting helps me find the stuff I need... The ConfigurableDirectory property of Feature allows the user to Browse to select a path for

Re: [WiX-users] ServiceConfig Has anybody got this to work??

2008-09-22 Thread Rob Mensching
Can you show the authoring as well? Unfortunately, that's a very generic error message. -Original Message- From: CHarker [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2008 15:09 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] ServiceConfig Has anybody got this to

Re: [WiX-users] Custom Actions from Merge Modules

2008-09-22 Thread Christopher Karper
In all likelihood, your problem is that your CA is being modularized when compiled, but maybe not to the standard you're expecting. If you look at your .msm in Orca, you'll see the actual name it's been given. I believe you can suppress the modularization if that's your wish. Or you can at