Re: [WiX-users] How to set property value by directory path

2008-07-16 Thread Benas
riginal Message- > From: [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] On Behalf Of Benas > Sent: Wednesday, July 16, 2008 8:59 AM > To: WiX-users > Subject: [WiX-users] How to set property value by directory path > > Hello all, > > What i need is to set proper

Re: [WiX-users] How to set property value by directory path

2008-07-16 Thread Brian Rogers
Try the WIX element "SetProperty". I read the spec on the Property Table and it only takes the type of "Text". So, what I sent before would not work. Sorry about that. -- Brian Rogers "Intelligence removes complexity." - Me http://www.codeplex.com/wixml/ On Wed, Jul 16, 2008 at 9:32 AM, Benas <

Re: [WiX-users] How to set property value by directory path

2008-07-16 Thread Alexander Shevchuk
This can be done with custom action 51: Alex Shevchuk -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Benas Sent: Wednesday, July 16, 2008 8:59 AM To: WiX-users Subject: [WiX-users] How to set property value by directory path Hello all

Re: [WiX-users] How to set property value by directory path

2008-07-16 Thread Benas
I have tried both of your solutions and both doesn't work if i hardcode the value into property everything is fine but if i try to use [ProgramMenuFolder] or *[[*ProgramMenuFolder*]]* it does not 2008/7/16 Brian Rogers <[EMAIL PROTECTED]>: > I'm not positive that this will work. However, try thi

Re: [WiX-users] How to set property value by directory path

2008-07-16 Thread Brian Rogers
I'm not positive that this will work. However, try this syntax. http://msdn.microsoft.com/en-us/library/aa368609(VS.85).aspx -- Brian Rogers "Intelligence removes complexity." - Me http://www.codeplex.com/wixml/ On Wed, Jul 16, 2008 at 8:58 AM, Benas <[EMAIL PROTECTED]> wrote: > Hello all, >

[WiX-users] How to set property value by directory path

2008-07-16 Thread Benas
Hello all, What i need is to set property value that would contain full path to ProgramMenuFolder directory. My directory is [ProgramMenuFolder]\\\ Actualy C:\...\Start Menu\Programs\\ I have tried But this doesn't set correct value. Tx for help, Benas --