In article <737773.28096...@web59811.mail.ac4.yahoo.com>,
    "little.forest" <little.for...@ymail.com>  writes:

> <CustomAction Id="SetSearchFolderProp" 
> Property="SETTING_FOLDERS_PROP" 
> Value="$(var.WIX_UPGRADE_SETTING_PARAMS)" 
> />
> 
>         <Binary Id="DetectSettingMigrationBin" SourceFile="DetectSetting.dll
" />
> <CustomAction Id="DetectSettingMigrationCA"
> BinaryKey="DetectSettingMigrationBin" 
>                       DllEntry="DetectSetting"
> Execute="firstSequence"
> />
> 
> 
> <InstallUISequence>
> <Custom Action="SetSearchFolderProp" After="AppSearch" />
> <Custom Action="DetectSettingMigrationCA" After="SetSearchFolderProp" />
> </InstallUISequence>

> How can I schedule it to make sure it is "set before I open the dialog"?

Dialogs are scheduled as actions in the InstallUISequence.  So you
need to make sure that the CAs setting your property appear in the
sequence before the dialogs.

> "If
> while the dialog is open you want to change the visibility of the checkbox
> you subscribe to an event." - how to subscribe an event?

Nest a <Subscribe> element in your <Control> element.
-- 
"The Direct3D Graphics Pipeline" -- DirectX 9 draft available for download
 <http://legalizeadulthood.wordpress.com/the-direct3d-graphics-pipeline/>

      Legalize Adulthood! <http://legalizeadulthood.wordpress.com>

------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to