Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-29 Thread Bob Arnson
Jan Bilek wrote: >... > The problem is that WixUIExtension already has an MsiRMFilesInUse dialog, so you can't add another. MSI uses indirection for most dialogs like that (e.g., ErrorDialog property points to the error dialog). But they don't do that for MsiRMFilesInUse, so your

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-29 Thread Jan Bilek
OK - im gonna be more specific. Steps i had followed: 1. copied content of WixUI_InstallDir.wxs ( element) and pasted it into my wxs installer source. 2. removed references to FilesInUse and MsiRMFilesInUse dialogs. 3. copied and pasted content of FilesInUse.wxs and MsiRMFilesInUse.wxs ( definit

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-28 Thread Bob Arnson
Jan Bilek wrote: > When i try to define my own version of MsiRMFilesInUse like i've done > for FilesInUse, then i receive an error message saying than the > MsiRMFilesInUse dialog is already defined (error LGHT0130: The primary > key 'MsiRMFilesInUse' is duplicated in table 'Dialog'.). I had com

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-28 Thread Jan Bilek
Hello and thanks for your support. I've managed to get rid off the FilesInUse (i've created own UI and defined the FilesInUse dialog with appropriate attributes), but the same method doesn't work for MsiRMFilesInUse dialog, which is being displayed during the uninstallation without UI. When i t

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-25 Thread Bob Arnson
Karthik Krishnan wrote: > It is buried/implied in the documentation, but there is a simpler way. Just > change the sequencing of the windows. That is not a reliable method. See https://sourceforge.net/tracker/?func=detail&atid=642714&aid=2780533&group_id=105970. -- sig://boB http://joyofsetup.

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Karthik Krishnan
Sorry, I just pasted my response into the wrong window :) On Fri, Apr 24, 2009 at 7:25 PM, Karthik Krishnan wrote: > It is buried/implied in the documentation, but there is a simpler way. Just > change the sequencing of the windows. I haven't done this for Mondo, but > here it is for FeatureTree

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Karthik Krishnan
It is buried/implied in the documentation, but there is a simpler way. Just change the sequencing of the windows. I haven't done this for Mondo, but here it is for FeatureTree : 1 NOT Installed You'll still need to peek at the source. You are essentially overriding the existing Dialog orders.

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Jan Bilek
Wow! So the only way how to get rid off that damned FileInUse dialog is to create complete own version of WixUI template like "WixUI_MondoNoLicense"? Jesus, it's like hunting mice with an a-bomb! Seriously, isn't there any other easier way how to accomplish this simple task? Is there any way ho

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Brian Bakkebo
Jan this is a good starting point: http://neilsleightholm.blogspot.com/2008/08/customised-uis-for-wix.html Dizzy Monkey design has a little ok guid. http://www.dizzymonkeydesign.com/blog/misc/adding-and-customizing-dlgs-in-wix-3/ You can also use the guide here by Gábor DEÁK JAHN : http://www.tram

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-24 Thread Jan Bilek
Thanks for the link. But i've got one more question. I,ve never needed to customize UI of my installer, so i'd like to know how to change attributes (hidden, modeless) of already defined from my installer code?... Or do i have to browse original Wix sources and make these changes where the Fil

Re: [WiX-users] How to disable/bypass FilesInUse dialog

2009-04-23 Thread Brian Simoneau
http://www.installsite.org/pages/en/msifaq/a/1042.htm -Brian Simoneau -Original Message- From: Jan Bilek [mailto:bil...@gmail.com] Sent: Thursday, April 23, 2009 2:58 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to disable/bypass FilesInUse dialog Hello, Is there any