http://lmgtfy.com/?q=WiX+installing+an+assembly+to+the+GAC

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the <Virtual Environment>**
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer

-----Original Message-----
From: Velu [mailto:velusa...@syncfusion.com] 
Sent: 11 August 2010 05:29
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Custom Action and Billboard Action



Hi ,

Is it possible to display the images while running the custom action
using the Billboard? . Currently, in my installer images are displayed
using the Billboard while installing the features. But while running the
CA it will not get displayed.

I have feature name "ProductFeature" it install the assemblies into the
machine. So, that at the time of installing the "ProductFeature" the
images are displayed properly.

But i have the Custom Action to install those assemblies into  the GAC.
At the time of running the Custom Action images are not properly
displayed.

Here below is my code: 

Working Code:

<Control Id="MyBillboard" Type="Billboard" X="20" Y="104" Width="125"
Height="340">
         
                    <Subscribe Event="InstallValidate"
Attribute="Progress"
/>
                    <Subscribe Event="InstallFiles" Attribute="Progress"
/> </Control>

<BillboardAction Id="InstallValidate">
                <Billboard Id="BB1e" Feature="ProductFeature">
                    <Control Id="Bitmap" Type="Bitmap" X="0" Y="0"
FixedSize="yes" Width="152" Height="358" Text="Progress1" />
                </Billboard>
</BillboardAction>
<BillboardAction Id="InstallFiles">
                <Billboard Id="BB3b" Feature="ProductFeature">
                    <Control Id="Bitmap" Type="Bitmap" X="0" Y="0"
FixedSize="yes" Width="152" Height="358" Text="Progress3" />
                </Billboard>              
</BillboardAction>

  <Feature Id="ProductFeature" Title="AssembliesSetup" Level="1">
            <ComponentRef Id="20Assemblies" />       
   </Feature>


Not working Code:

<CustomAction Id="INSTALL_DLL" BinaryKey="assemblymanager_install"
DllEntry="RunAssemblyManagerConsole_InstallVersion" Return="ignore"
Execute="immediate" />

<Control Id="MyBillboard" Type="Billboard" X="20" Y="104" Width="125"
Height="340">
         
                    <Subscribe Event="INSTALL_DLL" Attribute="Progress"
/>
                    <Subscribe Event="INSTALL_DLL" Attribute="Progress"
/> </Control>

<BillboardAction Id="INSTALL_DLL">
                <Billboard Id="BB1e" Feature="ProductFeature">
                    <Control Id="Bitmap" Type="Bitmap" X="0" Y="0"
FixedSize="yes" Width="152" Height="358" Text="Progress1" />
                </Billboard>
</BillboardAction>

<BillboardAction Id="IINSTALL_DLL">
                <Billboard Id="BB3b" Feature="ProductFeature">
                    <Control Id="Bitmap" Type="Bitmap" X="0" Y="0"
FixedSize="yes" Width="152" Height="358" Text="Progress3" />
                </Billboard>              
</BillboardAction>

  <Feature Id="ProductFeature" Title="AssembliesSetup" Level="1">
            <ComponentRef Id="20Assemblies" />       
   </Feature>


Please let me know if you have any ideas.

Thanks,
Velu


--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-Act
ion-and-Billboard-Action-tp5410955p5410955.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------
------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to