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
- :
- Customizing SQL Server screen
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
‎Dec 06, 2009
12:52 PM
Customizing SQL Server screen
I have an Installshield MSI project. I have the following script which calls the SQL Server setup screen:
...
Dlg_SQL:
nResult = OnSQLLogin( nResult );
if( nResult = BACK ) then
if (!bCustom) then
goto Dlg_SetupType;
else
goto Dlg_SdFeatureTree;
endif;
endif;
...
I have 1 things I want to customize (fix) on this screen but can't figure out how to do it.
This screen allows to specify the server, credentials, and also the database catalog. So, it has a combobox and Browser button for each the server and the database. The problem is that when I select the browse button for the database, it lists the databases, but at the top of the window, it says: "From the list of servers below, select the database server you would like to target" which corresponds to the IDS_SQLBROWSE_INTRO identifier. I'm thinking that it should be referencing the IDS_SQLBROWSE_INTRO_DB identifier which says this: "From the list of catalog names below, select the database catalog you would like target".
How can I customize that so it displays the right text?
Thanks for any suggestions.
Greg
...
Dlg_SQL:
nResult = OnSQLLogin( nResult );
if( nResult = BACK ) then
if (!bCustom) then
goto Dlg_SetupType;
else
goto Dlg_SdFeatureTree;
endif;
endif;
...
I have 1 things I want to customize (fix) on this screen but can't figure out how to do it.
This screen allows to specify the server, credentials, and also the database catalog. So, it has a combobox and Browser button for each the server and the database. The problem is that when I select the browse button for the database, it lists the databases, but at the top of the window, it says: "From the list of servers below, select the database server you would like to target" which corresponds to the IDS_SQLBROWSE_INTRO identifier. I'm thinking that it should be referencing the IDS_SQLBROWSE_INTRO_DB identifier which says this: "From the list of catalog names below, select the database catalog you would like target".
How can I customize that so it displays the right text?
Thanks for any suggestions.
Greg
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 10, 2009
06:16 PM
Any suggestions?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jan 04, 2010
11:08 AM
I tried a new InstallScript MSI project in IS 2010, but I have the correct descriptions on each dialog; It says "From the list of servers below, select the database server you would like to target" when I clicked the Browse button for the target server, and "From the list of catalog names below, select the database catalog you would like target" when I clicked the Browse button for the target database.
Can you try it with a new project by just adding a new connection, and see if it's reproducible?
Can you try it with a new project by just adding a new connection, and see if it's reproducible?