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

Hide SQL Connection Dialog.

We have a InstallScript MSI project(InstallShield 2008) which needs to run a bunch of SQL scripts.
The database connection information is already known and the relevant properties (IS_SQLSERVER_SERVER, IS_SQLSERVER_AUTHENTICATION...) have been set using the Property Manager.
So, we don't need the SQL Connection dialog appearing during the install.

Is there a way to do this without writing any InstallScript code?

Thanks
Labels (1)
0 Kudos
(2) Replies
hidenori
Level 17

In order to hide the SQLLogin dialog, you just need to modify OnFirstUIBefore InstallScript event so that OnSQLLogin will not get called.
0 Kudos
nKalkur
Level 2

Thanks. That did it.

hidenori wrote:
In order to hide the SQLLogin dialog, you just need to modify OnFirstUIBefore InstallScript event so that OnSQLLogin will not get called.
0 Kudos