This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: How to set the background in an InstallScript project to an image?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jul 19, 2007
01:31 PM
How to set the background in an InstallScript project to an image?
Hello,
I would like to place an image in the background of my installscript app but am not quite sure of how to do so. Some assistance would be greatly appreciated. It would also help if you were very specific as I have been in contact with this program for less than a day.
Thanks,
Deepak
I would like to place an image in the background of my installscript app but am not quite sure of how to do so. Some assistance would be greatly appreciated. It would also help if you were very specific as I have been in contact with this program for less than a day.
Thanks,
Deepak
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jul 20, 2007
10:25 AM
This is what I have so far. Thanks for the help.
(OnShowUI)
if ( LoadStringFromStringTable( "TITLE_MAIN", szTitle ) < ISERR_SUCCESS ) then // Load the title string.
szTitle = IFX_SETUP_TITLE;
endif;
SetTitle( szTitle, 24, WHITE );
Enable( FULLWINDOWMODE );
Enable( BACKGROUND );
PlaceBitmap ( "Setup.bmp" , 1 , CENTERED , CENTERED , FULLSCREEN );
(OnShowUI)
if ( LoadStringFromStringTable( "TITLE_MAIN", szTitle ) < ISERR_SUCCESS ) then // Load the title string.
szTitle = IFX_SETUP_TITLE;
endif;
SetTitle( szTitle, 24, WHITE );
Enable( FULLWINDOWMODE );
Enable( BACKGROUND );
PlaceBitmap ( "Setup.bmp" , 1 , CENTERED , CENTERED , FULLSCREEN );