I have created a setup of a project using wix installer ,which was created in vs2010.Now i have completely created the setup for the project.But i need to replace the images in the wix installer with my product image.
i have used
<UIRef Id="MyWixUI_InstallDir" />
and have customized the dialog's.I have used this lines to refer for the images,
<WixVariable Id="WixUIBannerBmp" Value="Banner.bmp" />
<WixVariable Id="WixUIDialogBmp" Value="Dialog.bmp" />
bit was not working .but if i give reference to the default (ie) this <UIRef Id="WixUI_InstallDir" />
insteasd of <UIRef Id="MyWixUI_InstallDir" />
,then the images are correctly working. But i need the same to be done in my customized dialog.
Thanks in Advance. Arshad.