Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-26 Thread McKinnon, Chris
re. DeleteFiles = ERROR_SUCCESS End Function Hope that helps, Chris McKinnon -Original Message- From: sagar shinde [mailto:sagar.i...@gmail.com] Sent: Tuesday, October 26, 2010 5:34 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Calling a mana

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-26 Thread sagar shinde
bert van Peppen > Senior System Engineer > Insad Grafisch b.v. > The Netherlands > > -Oorspronkelijk bericht- > Van: David Watson [mailto:dwat...@sdl.com] > Verzonden: maandag 25 oktober 2010 16:01 > Aan: General discussion for Windows Installer XML toolset. > On

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-25 Thread Albert van Peppen
bericht- Van: David Watson [mailto:dwat...@sdl.com] Verzonden: maandag 25 oktober 2010 16:01 Aan: General discussion for Windows Installer XML toolset. Onderwerp: Re: [WiX-users] Calling a managed custom action from a UI control Try something like this

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-25 Thread David Watson
yExists_Result") = "no" > > End If > > DirectoryExists = ERROR_SUCCESS > > End Function > > > > It's still frustrating that the DLL approach didn't work. > > > > Thanks, > > > > Chris McKinnon > > > > -Origin

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-25 Thread Albert van Peppen
ML toolset. Onderwerp: Re: [WiX-users] Calling a managed custom action from a UI control hi thanks for reply, but i can not use this removefolder as my installer will create new folders and diffrent files will be created in that folder by user so RemoveFolder will not work in this case is ter any ot

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-25 Thread sagar shinde
") = "no" > > End If > > DirectoryExists = ERROR_SUCCESS > > End Function > > > > It's still frustrating that the DLL approach didn't work. > > > > Thanks, > > > > Chris McKinnon > > > > -Original Messag

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-25 Thread Albert van Peppen
Grafisch b.v. The Netherlands -Oorspronkelijk bericht- Van: sagar shinde [mailto:sagar.i...@gmail.com] Verzonden: maandag 25 oktober 2010 13:57 Aan: General discussion for Windows Installer XML toolset. Onderwerp: Re: [WiX-users] Calling a managed custom action from a UI control hi i am

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-25 Thread sagar shinde
-Original Message- > From: Wilson, Phil [mailto:phil.wil...@invensys.com] > Sent: Tuesday, October 19, 2010 11:38 AM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] Calling a managed custom action from a UI > control > > Are you really cra

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-19 Thread McKinnon, Chris
11:38 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Calling a managed custom action from a UI control Are you really cranking up all this infrastructure just to see if a directory exists? There's got to be a simpler way, even if it's only a horrible

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-19 Thread Wilson, Phil
- From: McKinnon, Chris [mailto:cmckin...@atb.com] Sent: Tuesday, October 19, 2010 8:58 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Calling a managed custom action from a UI control Hi Blair, No log entries, unfortunately. I've let my installer s

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-19 Thread McKinnon, Chris
rror or progress logging performed by the stub won't show up. -Original Message- From: McKinnon, Chris [mailto:cmckin...@atb.com] Sent: Monday, October 18, 2010 10:52 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Calling a managed custom action from a UI control Thanks for the

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-18 Thread Blair
won't show up. -Original Message- From: McKinnon, Chris [mailto:cmckin...@atb.com] Sent: Monday, October 18, 2010 10:52 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Calling a managed custom action from a UI control Thanks for the ideas Steve. I tried running my code in

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-18 Thread McKinnon, Chris
;. Action ended 11:44:30: CheckArchiveDirectory. Return value 1. Action 11:44:30: VerifyReadyDlg. Dialog created Anyone have any ideas what would be causing the hang? It was thinking it might be permissions or a group policy setting but then running the custom action should fail every time. Thank,

Re: [WiX-users] Calling a managed custom action from a UI control

2010-10-18 Thread Steve Green
Chris, I had a similar problem opening the windows OpenFileDialog common dialog. I found it would work fine on Windows Server 2003 but on Windows 7 it just hung, showing the same spinning wheel. I ended up having to open the dialog in a new thread, then all worked fine. My C# code was as follow

[WiX-users] Calling a managed custom action from a UI control

2010-10-15 Thread McKinnon, Chris
Hi, I have built a managed custom action to check if a UNC path exists. I'm not installing to this path. This path is simply being set as the value of a .config file setting during the install. I just want to verify that it is a valid path. The custom action is defined as follows: [CustomActi