I added a Maintenance dialog to my UI yesterday with Repair and Remove
buttons. Each button spawns their respective verify dialog screen. After the
user verifies their decision I was looking to display a progress dialog. 
The Repair works perfectly.  After clicking the Repair button on the Verify
dialog, a progress dialog appears while it replaces any missing files and
results in a completion dialog.  I set up the Remove dialogs in the exact
same way but it does not remove anything from the computer.  I nested the
Repair/Remove actions under the Progress boar Control Id. Here's what I have
for Repair (this works):
<Control Id="ProgressBar" Type="ProgressBar" X="35" Y="115" Width="300"
Height="10" ProgressBlocks="yes" Text="Progress done">
          <Subscribe Event="SetProgress" Attribute="Progress" />
          <Publish Event="ReinstallMode" Value="ecmus"></Publish>
          <Publish Event="Reinstall" Value="All"></Publish>
And here's Remove (this doesn't work):
<Control Id="ProgressBar" Type="ProgressBar" X="35" Y="115" Width="300"
Height="10" ProgressBlocks="yes" Text="Progress done">
          <Subscribe Event="SetProgress" Attribute="Progress" />
          <Publish Event="Remove" Value="All"></Publish>

I set this with the Remove button on the Maintenance dialog:
<Publish Property="InstallMode" Value="Remove">1</Publish>
I found that if I nested it under the Remove button on the Verify Remove
dialog, the button stopped functioning.

Could anyone explaing why the remove isn't actually removing anything? 
Thanks.
-- 
View this message in context: 
http://www.nabble.com/Uninstall-Progress-Dlg-tf2272262.html#a6308106
Sent from the wix-users forum at Nabble.com.


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to