Re: [WiX-users] conditionally show msg box

2008-06-05 Thread Richard
In article <[EMAIL PROTECTED]>, ywchen <[EMAIL PROTECTED]> writes: > I have another question about the sequence of the dialogs in my wxs file > listed below. Why is WelcomeDlg displayed first? If a dialog is listed as an action in the InstallUISequence table, then that dialog is displayed.

Re: [WiX-users] conditionally show msg box

2008-06-05 Thread ywchen
Thanks for your reply. You were right, the control "next" doesn't exist in the definition of CancelDlg. I have another question about the sequence of the dialogs in my wxs file listed below. Why is WelcomeDlg displayed first? And which one of the following predefined actions do those elements co

Re: [WiX-users] conditionally show msg box

2008-06-05 Thread Richard
In article <[EMAIL PROTECTED]>, "Simon Dahlbacka" <[EMAIL PROTECTED]> writes: > I don't know about the actual issue, but as you might guess from looking at > a snippet of xml, the > character is in fact a special one that needs > escaping > so either > Intel > 5 > or > > > > is more likel

Re: [WiX-users] conditionally show msg box

2008-06-04 Thread Simon Dahlbacka
I don't know about the actual issue, but as you might guess from looking at a snippet of xml, the > character is in fact a special one that needs escaping so either Intel > 5 or is more likely to work /Simon On Thu, Jun 5, 2008 at 1:57 AM, ywchen <[EMAIL PROTECTED]> wrote: > > > I am tryi

Re: [WiX-users] conditionally show msg box

2008-06-04 Thread Richard
In article <[EMAIL PROTECTED]>, ywchen <[EMAIL PROTECTED]> writes: > I am trying to display CancelDlg if Intel > 5. But I got the following > error during compilation. > > error LGHT0204 : ICE03: Not a valid foreign key; > Table: ControlEvent, Column: Control_, Key(s): > Can

Re: [WiX-users] conditionally show msg box

2008-06-04 Thread ywchen
I am trying to display CancelDlg if Intel > 5. But I got the following error during compilation. error LGHT0204 : ICE03: Not a valid foreign key; Table: ControlEvent, Column: Control_, Key(s): CancelDlg.Next.SpawnDialog.WelcomeDlg.Intel>5 Here's part of my wxs. Please t

Re: [WiX-users] conditionally show msg box

2008-06-04 Thread Richard
In article <[EMAIL PROTECTED]>, ywchen <[EMAIL PROTECTED]> writes: > I want to display a confirmation (yes/no) message box if the CPU is > slower than Intel Pentium II or the equivalent. If the user clicks Yes > button, the installer will continue. Otherwise, the installer will jump to >

[WiX-users] conditionally show msg box

2008-06-04 Thread ywchen
Hi, I want to display a confirmation (yes/no) message box if the CPU is slower than Intel Pentium II or the equivalent. If the user clicks Yes button, the installer will continue. Otherwise, the installer will jump to the ExitDialog directly. Please tell me how to do this. Thanks.