Re: [WiX-users] String concatenation/formatting.

2009-10-26 Thread VovaF
Rob Mensching-7 wrote: > > Do something like: > > Value=""[DirName]FileName.exe"" > > or better: > > Value=""[#FileId]"" > > First one did not work. The solution is, apparently, to put the whole string along with quotation marks inside apostrophes. Like this: ' "[DirName]FileName" ' (space

Re: [WiX-users] String concatenation/formatting.

2009-10-25 Thread Rob Mensching
t; -Original Message- > From: Rob Mensching [mailto:r...@robmensching.com] > Sent: Sunday, October 25, 2009 11:31 PM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] String concatenation/formatting. > > Do something like: > > Value=&q

Re: [WiX-users] String concatenation/formatting.

2009-10-25 Thread Dave Kolb
What "variable set" does #FileId come from? I don't recognize the # syntax. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: Sunday, October 25, 2009 11:31 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [Wi

Re: [WiX-users] String concatenation/formatting.

2009-10-25 Thread Rob Mensching
Do something like: Value=""[DirName]FileName.exe"" or better: Value=""[#FileId]"" On Sun, Oct 25, 2009 at 6:28 AM, Vova Froimchuk wrote: > Hi, > I'm completely new to WiX, and my search in "HowTos" and reference didn't > give me > a desired answer. Is there any way to concatenate string. My p

[WiX-users] String concatenation/formatting.

2009-10-25 Thread Vova Froimchuk
Hi, I'm completely new to WiX, and my search in "HowTos" and reference didn't give me a desired answer. Is there any way to concatenate string. My problem is to write a path of one of the installed files to registry inside *quotation marks*. Using *Value="[DirName]FileName.exe" * code writes the pa