I got it working for the feature_tree one.  You have to remove the dialogref for the licenseagreementdlg.  Then delete these lines:
<Property Id="WixUI_LicenseAgreementDlg_Back" Value="WelcomeDlg" />

      <Property Id="WixUI_LicenseAgreementDlg_Next" Value="CustomizeDlg" />

Then change this line

<Property Id="WixUI_CustomizeDlg_BackFeatureTree" Value="LicenseAgreementDlg" />

To

<Property Id="WixUI_CustomizeDlg_BackFeatureTree" Value="WelcomeDlg" />

And change this line

<Property Id="WixUI_WelcomeDlg_Next" Value="LicenseAgreementDlg" />

to

  <Property Id="WixUI_WelcomeDlg_Next" Value="CustomizeDlg" />

And make sure you add the dialogref

<DialogRef Id="WelcomeDlg" />

 

But the minimal one seems to work differently.

 

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Brian Beaudet
Sent: Thursday, August 03, 2006 2:51 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] WixUI_Minimal without license agreement

 

Scott,

 

I have the same concern except that I'm referencing the WixUI_FeatureTree.  I should say that I'm still working my way through the tutorial so the answer may be in there but I'd sure like to hit the "easy" button and find a way to make the license screen disappear.  My installer is for our field techs who can't agree on anything much less whether or not to accept some licensing terms. ;)

 

Brian

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sam
Sent: Thursday, August 03, 2006 1:12 PM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] WixUI_Minimal without license agreement

I want to use the Minimal wixui because I want the user to be able to just click next and have the install go, but I don’t want eula in it.  Is there any way to use the regular welcomeDlg in place of the WelcomeEulaDlg.  I get an error 2803 when I click the next button when I tried just changing the dialogRef.  What am I missing?

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Arnson
Sent: Thursday, August 03, 2006 10:57 AM
To: Simon Porter
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] installing fonts via msi

 

Simon Porter wrote:

I'm trying to put together a simple msi that will install a bunch of fonts
that I can then deploy using active directory. The problem I'm getting
though is when I run the setup program it complains that it couldn't
register the fonts and to check I have sufficient permissions. I am
currently logged on as the local admin and domain admin.
  

The log contains this message too:

Cannot get the font title for LT_50255.ttf.

The doc is kinda ambiguous but it does say:

Font name. It is recommended that you leave this column null for TrueType Fonts and TrueType Collections because the installer can register the font after reading the correct font title from the font file. If the font name is entered, it must be identical to font title from the font file. You must specify a title for fonts that do not have embedded names, such as .fon files.

So not being able to read the font title is probably a genuine error condition.

-- 
sig://boB
http://bobs.org
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to