Re: [WiX-users] How to add newline in Condition message

2007-10-18 Thread Nitin Chaudhari
@lists.sourceforge.net Subject: Re: [WiX-users] How to add newline in Condition message Hi WiX does not directly support this. But you can create the Public Property from Custom Action (e.g. CRLF) and this property will contain the new line sequence \r\n. After that you can write your message

Re: [WiX-users] How to add newline in Condition message

2007-10-18 Thread Kelly Leahy
what about #xD and #xA... Do those work? Kelly Stefan Pavlik [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 10/17/2007 10:39 PM To Nitin Chaudhari [EMAIL PROTECTED] cc wix-users@lists.sourceforge.net Subject Re: [WiX-users] How to add newline in Condition message Hi WiX does

Re: [WiX-users] How to add newline in Condition message

2007-10-18 Thread Chad Petersen
Of Nitin Chaudhari Sent: Wednesday, October 17, 2007 11:13 PM To: 'Stefan Pavlik' Cc: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to add newline in Condition message I got the answer you have to write it like this Condition Message=You do not have#xD;#xA;Admin Rights #xD;#xA

[WiX-users] How to add newline in Condition message

2007-10-17 Thread Nitin Chaudhari
Hi, I tried the following, but it doesn't work Condition Message=Not Admin \n\r don't have 2.0(NOT Priviledged) AND MsiNetAssemblySupport lt;= 2.0.50727/Condition How to display message in multiple lines. Thanks, Nitin DISCLAIMER == This e-mail may contain privileged

Re: [WiX-users] How to add newline in Condition message

2007-10-17 Thread Stefan Pavlik
Hi WiX does not directly support this. But you can create the Public Property from Custom Action (e.g. CRLF) and this property will contain the new line sequence \r\n. After that you can write your message in the following way: Condition Message=Not Admin [CRLF] don’t have 2.0(NOT Priviledged)