Please bear with me, I'm relatively new to Wix (only worked with it for 6 months
2 years ago)and it was only up to V2 something at that time.

I am attempting to create a trial Custom UI (my first). Nothing spectacular, 
just a single dialog box
with a single edit control, and a next button (fancy will come later after I 
get THIS to work).
Following the example of the Wix tutorial worked right up to the point of 
trying to compile and
link. Upon compiling and linking (building from the VS IDE) I get a whole slew 
of errors starting with:

Error   4       ICE20: Standard Dialog: 'FilesInUse' not found in Dialog table  
C:\Documents and Settings\a-daande\Local Settings\Temp\pffllhu-\UISample.msi    
0       1       UISample

I never MENTIONED a FilesInUse dialog ANYWHERE, so why is it looking for one? 
and how do I satisfy it?
What does it have to have in it? When I tried to provide one, it gave me a 
multiply defined symbol error.
Please,  HELP?

Copying the Wix tutorial UI samples (Lesson 8 of the tutorial) and trying to 
compile them produces
the same errors.

It is also looking for an ErrorDialog property, and a dialog box to go with it. 
When I add those (it REALLY didn't like it when I named
the dialog box FatalError, and gave me multiply defined symbol errors for my 
efforts)

            <Property Id="ErrorDialog" Value="TerminalError" />
and

          <Dialog Id="TerminalError" Width="370" Height="270" Title="UISample 
Setup" NoMinimize="yes">

(mostly copied via cut and paste from the tutorial samples) it tells me:

Error   5       ICE20: Specified ErrorDialog: 'TerminalError' not found in 
Dialog table (or its Control_First control is not 'ErrorText').      
C:\Work\UISample\UISample\UISample.wxs  74      1       UISample
Error   6       ICE20: FatalError dialog/action not found in 'AdminUISequence' 
Sequence Table.  C:\Documents and Settings\a-daande\Local 
Settings\Temp\pffllhu-\UISample.msi    0       1       UISample

The sample had me provide an empty AdminUISequence:

          <AdminUISequence />

and I have entries in the InstallUISequence

          <InstallUISequence>
            <Show Dialog="Startup" After="CostFinalize" />
            <Show Dialog="TerminalError" OnExit="error" />
          </InstallUISequence>

It's also complaining about missing UserExit and Exit dialogs (which might be 
legit as I don't have
them, but then the tutorial never mentioned them):

Error   7       ICE20: UserExit dialog/action not found in 'InstallUISequence' 
Sequence Table.  C:\Documents and Settings\a-daande\Local 
Settings\Temp\pffllhu-\UISample.msi    0       1       UISample
Error   8       ICE20: UserExit dialog/action not found in 'AdminUISequence' 
Sequence Table.    C:\Documents and Settings\a-daande\Local 
Settings\Temp\pffllhu-\UISample.msi    0       1       UISample
Error   9       ICE20: Exit dialog/action not found in 'InstallUISequence' 
Sequence Table.      C:\Documents and Settings\a-daande\Local 
Settings\Temp\pffllhu-\UISample.msi    0       1       UISample
Error   10      ICE20: Exit dialog/action not found in 'AdminUISequence' 
Sequence Table.        C:\Documents and Settings\a-daande\Local 
Settings\Temp\pffllhu-\UISample.msi    0       1       UISample
Error   11      ICE31: The 'DefaultUIFont' Property must be set to a valid 
TextStyle in the Property table.     C:\Documents and Settings\a-daande\Local 
Settings\Temp\pffllhu-\UISample.msi    0       1       UISample
Error   12      ICE31: Control TerminalError.Title uses text style 
VerdanaBold13, but the TextStyle table does not exist.       
C:\Work\UISample\UISample\UISample.wxs  110     1       UISample

Adding:


      <Property Id="DefaultUIFont">DlgFont8</Property>
      <TextStyle Id="DlgFont8" FaceName="Tahoma" Size="8" />
      <TextStyle Id="DlgFontBold8" FaceName="Tahoma" Size="8" Bold="yes" />
      <TextStyle Id="VerdanaBold13" FaceName="Verdana" Size="13" Bold="yes" />

Gets rid of errors 11 and 12, but I was perfectly happy to have it use whatever 
the defaults were,
and the necessity for them was NOT mentioned in the tutorial.

Does anyone have any suggestions? The tutorial is NOT much help here (Its 
samples produce the
very same errors).







-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to