Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-02 Thread dileep s
@lists.sourceforge.net Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi Blair, I have created the C++ custom action project. Created Dialog Resource file. Created functions in C++ custom action DLL Main() to load

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-02 Thread Nicolás Alvarez
2013/12/2 dileep s dileep.sanamp...@gmail.com: On Mon, Dec 2, 2013 at 1:21 PM, Blair Murri os...@live.com wrote: I was referring to the code in SampleDLL.dll. I assume you are not creating your UI in DllMain(). There is a method that you export where your UI is created that Burn calls. Hi

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-02 Thread Blair Murri
Create a couple of methods and add them to your .def file. The protototypes of them are as follows: extern C HRESULT WINAPI BootstrapperApplicationCreate( __in IBootstrapperEngine* pEngine, __in const BOOTSTRAPPER_COMMAND* pCommand, __out IBootstrapperApplication** ppApplication

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-01 Thread Blair Murri
how did you load your BA? Date: Fri, 29 Nov 2013 11:07:37 +0530 From: dileep.sanamp...@gmail.com To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi Blair, Thank you

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-01 Thread dileep s
, 28 Nov 2013 12:43:53 +0530 From: dileep.sanamp...@gmail.com To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi Blair, Thank you for the information

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-12-01 Thread Blair Murri
: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi Blair, I have created the C++ custom action project. Created Dialog Resource file. Created functions in C++ custom action DLL Main() to load the resource. Build C++ custom action

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-28 Thread Blair Murri
-users@lists.sourceforge.net Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi Blair, Thank you for the information. Is there any examples in c++ to call Detect, then Plan, and then Apply on the engine. We need

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-28 Thread dileep s
Subject: Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi Blair, Thank you for the information. Is there any examples in c++ to call Detect, then Plan, and then Apply on the engine. We need to load the WixStdBA.dll

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-27 Thread ak m
From: dileep.sanamp...@gmail.com To: wix-users@lists.sourceforge.net Subject: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi All, I have created custom UI in C++. I was able to display my custom UI in WIX BootStrapper

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-27 Thread dileep s
: Tue, 26 Nov 2013 11:55:54 +0530 From: dileep.sanamp...@gmail.com To: wix-users@lists.sourceforge.net Subject: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi All, I have created custom UI in C++. I was able

Re: [WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-26 Thread Blair Murri
to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI Hi All, I have created custom UI in C++. I was able to display my custom UI in WIX BootStrapper application. In custom UI, I have two options like install, Exit. BootstrapperApplication Id

[WiX-users] [WIX]: How to trigger my MSI file when I select install option in Wix Custom Bootstrapper UI

2013-11-25 Thread dileep s
Hi All, I have created custom UI in C++. I was able to display my custom UI in WIX BootStrapper application. In custom UI, I have two options like install, Exit. BootstrapperApplication Id =MyCustomBootStrapperID Payload SourceFile=D:\SampleDLL.dll/ /BootstrapperApplication Chain