Re: [WiX-users] DifxApp

2006-09-24 Thread Mike Dimmick
I wasn't particularly satisfied with this answer so I went on a trip through the .wixlib and .wixobj formats, and reverse-engineered the .wxs file used to generate DIFxApp.wixlib. Hopefully find it attached. I then ran this through wixcop to get a v3 .wxs file. I used NetFxExtension.wxs and netf

Re: [WiX-users] Disable feature when property is empty

2006-09-24 Thread Kalle Olavi Niemitalo
Mark Weaver <[EMAIL PROTECTED]> writes: > vbtricks wrote: >> [FIREFOX_INSTALL_VERSION] NOT "" Use this: NOT FIREFOX_INSTALL_VERSION > Reverse the test, set the level of the feature to 0 and then increase it > in the condition if firefox is installed. Beware! Windows Installer ignores

Re: [WiX-users] Disable feature when property is empty

2006-09-24 Thread Mike Dimmick
Title: Re: [WiX-users] Disable feature when property is empty The [] brackets are used for columns with a Formatted data type in the tables. They are not needed and will cause problems if used in Condition columns.   See Conditional Statement Syntax on MSDN: http://msdn.microsoft.com/library/def

Re: [WiX-users] Disable feature when property is empty

2006-09-24 Thread Mark Weaver
vbtricks wrote: > Salut, > > well, seems I have to set Level to 0 to disable the feature. But there's > still an error, if [FIREFOX_INSTALL_VERSION] is empty, the feature is not > disabled. That's my condition: > > [FIREFOX_INSTALL_VERSION] NOT "" > > Can you help me again? > > Reverse

Re: [WiX-users] Disable feature when property is empty

2006-09-24 Thread vbtricks
Salut, well, seems I have to set Level to 0 to disable the feature. But there's still an error, if [FIREFOX_INSTALL_VERSION] is empty, the feature is not disabled. That's my condition: [FIREFOX_INSTALL_VERSION] NOT "" Can you help me again? Thanks in advance, Stefan Rob Mensching w