[WiX-users] Change existing dialog text

2010-08-09 Thread Rahul.Ekbote
Hi, We want to change the button text from the existing dialog box. e.g I want to change the button text from Typical, Custom, Complete to some Engine,GUI,All. Can we make this kind of changes. I found the .wxs code for the same Control Id=CompleteButton Type=PushButton X=40 Y=171 Width=80

Re: [WiX-users] Shared Attribute handling while Upgrade

2010-08-09 Thread Swapnil Sankla
This is a major upgrade. I am sharing these binaries with the other installers which are MSI only. Swapnil Sankla | Software Engineer | Persistent Systems Limited swapnil_san...@persistent.co.in | Cell: +91  9960851096 Persistent Systems - Innovation in software product design, development and

Re: [WiX-users] Can you change the text of an installed file based on installation parameters?

2010-08-09 Thread michaelrepucci
Still struggling with this problem. Here's an example of an XML file with the structure I need to modify on install. ?xml version=1.0? RootElement SubElement ?js //insert Javascript here with formatted property values e.g. [PropertyName]

Re: [WiX-users] ICE34 error or Unresolved reference

2010-08-09 Thread Chad Petersen
What would be appropriate defaults for these properties? It seems like it wants one of the choices from the RadioButtonGroup. For MaintenacneMode this would be either AddRemove, RemoveAll or Reinstall. So, for example I set Property Id=MaintenanceMode Value=AddRemove/ But, this seems to then

Re: [WiX-users] Change existing dialog text

2010-08-09 Thread Nick Ramirez
In many cases, you need to make your own version of the .wxs file to replace that dialog in the wizard. However, in your case, you only want to change the text on the buttons. So, it's much easier. You only need to add a .wxl file to your project with the strings that match the text and tooltip

Re: [WiX-users] Shared Attribute handling while Upgrade

2010-08-09 Thread Wilson, Phil
The don't set the sharing option that becomes msidbComponentAttributesSharedDllRefCount. Phil Wilson -Original Message- From: Swapnil Sankla [mailto:swapnil_san...@persistent.co.in] Sent: Monday, August 09, 2010 2:32 AM To: General discussion for Windows Installer XML toolset.

[WiX-users] ICE03 and ICE69 errors

2010-08-09 Thread Wang, Miaohsi
Hello, We are getting two ICE errors when building the msi: light.exe(0,0): error LGHT0204: ICE03: Not a valid foreign key; Table: Registry, Column: Value, Key(s): reg915A9E650BB0D354565B781E5858F979.58162F94_0C12_465B_AC53_1CA2F709F44B light.exe(0,0): error LGHT0204: ICE69:

[WiX-users] Custom Extension - how'd they do that?

2010-08-09 Thread Maillet, Ed
Hey all, I'm working on a custom Compiler Extension and it mostly works. I'm stumped on a problem about how do to one part. Following how the WixIIsExtension works, I have my extension, my compiler, my custom actions, etc. What I can't figure out is how (or where) the WixIIsExtension wires

Re: [WiX-users] Updating msiexec status window from custom action

2010-08-09 Thread Gary Gocek
No, this had no effect. the little status window did not change. Your instructions were pretty simple, I just added a UI element to the WIX script, referring to the ID of the custom action, and I expected the message to appear while the CA was running. The CA takes several seconds, but there

[WiX-users] .NET 4 and Wix 3.5

2010-08-09 Thread little.forest
We're migrating our app to use .NET 4.0. We'll need to detect and install .NET 4.0. We're using Wix 3.0. From this post(http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/NetFxExtension-and-NET-4-td4969906.html#a4969906 ), it seems we need to move to Wix 3.5. But I tried to install

Re: [WiX-users] .NET 4 and Wix 3.5

2010-08-09 Thread Blair
That's what the binaries.zip is for: to add WiX to a version-control to avoid installing it to a build system. You have to do the configuration yourself, but -Original Message- From: little.forest [mailto:little.for...@ymail.com] Sent: Monday, August 09, 2010 4:44 PM To:

Re: [WiX-users] .NET 4 and Wix 3.5

2010-08-09 Thread Blair
dumb-mouse-pointer/ As I was saying before being so rudely interrupted, you have to do your own configuration for your build platform, etc. yourself, and you need to avoid passing things like WIXOUTs, WIXOBJs, WIXPDBs, WIXLIBs, etc. from one build of WiX to another, and things like VS integration

Re: [WiX-users] Custom Extension - how'd they do that?

2010-08-09 Thread Blair
Are you looking for code lines in the compiler like this? this.Core.CreateWixSimpleReferenceRow(sourceLineNumbers, CustomAction, InstallCertificates); This line causes the fragment containing the CustomAction named InstallCertificates to be pulled in by the linker when the element

Re: [WiX-users] ICE34 error or Unresolved reference

2010-08-09 Thread Bob Arnson
On 8/9/2010 1:09 PM, Chad Petersen wrote: What would be appropriate defaults for these properties? It seems like it wants one of the choices from the RadioButtonGroup. For MaintenacneMode this would be either AddRemove, RemoveAll or Reinstall. Yes, you have to provide a default property