Re: [WiX-users] best way to deploy C++ runtime?

2009-11-11 Thread mrtn
Hi Richard, If you find a mergemodule og make your own, can you please share it with me and the other readers. Last time I used time on this, Microsoft did not have a mergemodule, only a .exe file. //mrtn Richard-45 wrote: > > OK, so I need to deploy the VS 2008 C++ runtime (w/ATL se

Re: [WiX-users] Apply TRANSFORM during runtime of installation?

2009-10-22 Thread mrtn
Hi Joachim, Did you manage to do this? Applying a transform during installation? // morten Joachim Back wrote: > > Hi, > > I have managed to have a multiple language MSI by using msitran and msidb. > Are there any WIX tools to do this, so I am not dependent on SDK tools? > > And if this is

Re: [WiX-users] Beginner's Question on Multi Language Installer

2009-10-21 Thread mrtn
In stead of a bootstrapper - selecting the wanted transform - is it possible for the .msi file itself to select a transform file? Maybe in a C++ CA? Blair-2 wrote: > > You get German since that is the first one in your list of Cultures. > > MSI has never officially supported the scenario you d

Re: [WiX-users] WiX Controls: Expanding properties to text?

2009-10-20 Thread mrtn
ed in Scotland No. > SC151456 > Registered Office - Helix Building, West Of Scotland Science Park, > Glasgow G20 0SP > Email Disclaimer > > > -Original Message- > From: mrtn [mailto:mrtn.frederik...@gmail.com] > Sent: 20 October 2009 10:13 > To: wix-users@lists.so

Re: [WiX-users] WiX Controls: Expanding properties to text?

2009-10-20 Thread mrtn
t part) Text > > The only expansion that happens in this table is the Text column, which > comes from the Text attribute of the Control element. So, no bug. > > -Original Message- > From: mrtn [mailto:mrtn.frederik...@gmail.com] > Sent: Monday, October 19, 2009 12:05 PM > To

[WiX-users] WiX Controls: Expanding properties to text?

2009-10-19 Thread mrtn
Hi, When using a property as text in a control. Some gets expanded some don't. Here is an example: The button text gets expanded. Like: "Test: MyAppName" But the tooltip dont: "Test: [ProductName]" The tree control also do this. Is that a bug? // morten -- View this message in context:

[WiX-users] Setting properties in a C++-CA vs. setting properties using

2009-10-19 Thread mrtn
I have a question: When I do this: The property TestTitle gets the value with [ProductName] expanded. Like: "The product is: TestApp" However if I do this: MsiSetProperty(hMsi, _T("TestTitle"), _T("The product is: [ProductName]")); The property TestTitle gets the value: "The product is: [Product