cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
rockinfog
Level 2

Can I make the install screens always be top-most?

I don't want other window dialogs to disturb the installation untill whole installation finish.
Could any one can help me?
Thank you
Labels (1)
0 Kudos
(1) Reply
Fred_Oisund
Level 4

Assuming that you are using InstallShield or InstallShield MSI project types, you could try running the installation in full window mode.

This is obtained by uncommenting the following lines in OnFirstUIBefore handler:
// TO DO: if you want to enable background, window title, and caption bar title
// SetTitle( @PRODUCT_NAME, 24, WHITE );
// SetTitle( @PRODUCT_NAME, 0, BACKGROUNDCAPTION );
// Enable( FULLWINDOWMODE );
// Enable( BACKGROUND );
// SetColor(BACKGROUND,RGB (0, 128, 128));

This will only make it more difficult for the end user to switch between windows, I guess.

--
Fred
0 Kudos