Hi,
I have created a simple custom dialog using wixedit. i copied the <UI></UI>
part into my product.wxs file.
Here is my code to insert this new custom dialog.

<Product>
 <UIRef Id="MyUI" />
        <UI>
            <Dialog Id="dlgdummy" Width="370" Height="270">
                <Control Type="Text" Id="txtDummy" Width="204" Height="36"
X="90" Y="90" Text="Hello Wix dummy dlg" TabSkip="no" />
              <Control Type="Edit" Id="edtDummy" Width="50" Height="20"
X="90" Y="150" Text="Hello" TabSkip="no"/>
            </Dialog>
        </UI>
      <UI Id="MyUI">
        <UIRef Id="WixUI_Minimal"/>
        <DialogRef Id="dlgdummy"/>
        <Publish Dialog="WelcomeEulaDlg" Control="Install"
Event="SpawnDialog" Order="1" Value="dlgdummy">1</Publish>
        <Publish Dialog="WelcomeEulaDlg" Control="InstallNoShield"
Event="SpawnDialog" Order="1" Value="dlgdummy">1</Publish>
      </UI>
</Product>

Observations:
1. I have opened the msi with "InstEd It!" Tool. It shows the custom dialog
in the proper sequence after "WelcomeEulaDlg" on clicking Install Button.
2. I have tried with "WixUI_InstallDir" , same thing happens.
3. I tried with Event="New Dialog" , no luck.
4. I copied the Entire source code of "WixUI_InstallDir.wxs", renamed it
with "MyWixUI_InstallDir.wxs" and "InstallDirDlg.wxs" . I got so many
duplication errors.


Please help me out to add custom dialogs in the standard sequence. 

Thanks and Regards,
Sampat




--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Need-help-to-insert-custom-dialog-into-the-sequence-tp7599028.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to