cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
swamy2387
Level 3

Display Message During Installation

I am running the VBscript to attach the database during Installation. So I need to Show the message "Attaching Database..." to the user above the Progess Bar of SetupProgress Dialog.

How can i do this in the VBScript?


Kindly give some info to do this task....
Labels (1)
0 Kudos
(1) Reply
ch_eng
Level 7

If you are calling your VBScript from InstallScript, you could try something like this (in the InstallScript code):

SdShowMsg( "Attaching Database", TRUE );
//...call your VBScript...
SdShowMsg( "Attaching Database", FALSE );


HTH
0 Kudos