Re: [WiX-users] Problem with [#fileid] reference.

2008-08-22 Thread Rob Mensching
things this way. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, August 14, 2008 11:58 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Problem with [#fileid] reference. Yes, I did receive the ICE69 warning - and

Re: [WiX-users] Problem with [#fileid] reference.

2008-08-14 Thread misuo
Yes, I did receive the ICE69 warning - and with these responses the cause is now explained. I have too resolved it by using the "[DIR]filename" method and will remember in the future to take ekstra care about using the "[#fileid]" reference method. Thanks again, /Michael ---

Re: [WiX-users] Problem with [#fileid] reference.

2008-08-14 Thread Neil Enns
fixed it. Neil From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] [EMAIL PROTECTED] Sent: Thursday, August 14, 2008 1:04 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Problem with [#fileid] reference. Thanks for the

Re: [WiX-users] Problem with [#fileid] reference.

2008-08-14 Thread misuo
Thanks for the clarifications.  As cemiles suggest I've changed the code to exactly that of using "[DIR]filename" It just show that you cannot headlessly be sure that "[#fileid]" references always work across your components and wix source files. Now you'll have to think (we hate that, right?)

Re: [WiX-users] Problem with [#fileid] reference.

2008-08-13 Thread Chad Miles
I've seen people use that syntax as well, but have you tried something like [INSTALLDIR]SystemSettings.xml, assuming the file is being laid down in INSTALLDIR? On Wed, Aug 13, 2008 at 5:46 PM, <[EMAIL PROTECTED]> wrote: > > > > Am I correct to assume that using [#fileid] syntax to refer to a file

Re: [WiX-users] Problem with [#fileid] reference.

2008-08-13 Thread Neil Enns
ICE69 warnings given the snippet below, since you are doing a cross-component reference using #. Neil -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, August 13, 2008 2:46 PM To: wix-users@lists.sourceforge.net Subject: [WiX

[WiX-users] Problem with [#fileid] reference.

2008-08-13 Thread misuo
Am I correct to assume that using [#fileid] syntax to refer to a file does not work if that files' component is marked with Permanent="yes" and/or NeverOverwrite="yes"? I.e. it will only be correctly evaluated if the installer actually "processes", e.g. installs, the file. Example: ...