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: Display Message During Installation
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
Sep 26, 2011
06:11 AM
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....
How can i do this in the VBScript?
Kindly give some info to do this task....
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 26, 2011
08:37 AM
If you are calling your VBScript from InstallScript, you could try something like this (in the InstallScript code):
HTH
SdShowMsg( "Attaching Database", TRUE );
//...call your VBScript...
SdShowMsg( "Attaching Database", FALSE );
HTH