In my MSI package, I have a SQL Login dialog with a dropdownlist for SQL servers and a Browse button.
This is a standard SQL Login dialog I have not done any coding for.
When I try to install my MSI package on a system where SQL Server is not present, it shows #TEMP0004 in dropdownlist. I have searched a lot but didn't find anything except this link
If I launch my MSI package on a system where SQL Server is installed this does not happen. But in either case, when I click the Browse button, it shows a list of all servers in the network.
Any help will be greatly appreciated.
Thank you.
In ComboBox table there was one entry set for property IS_SQLSERVER_SERVER. Here "TestValue" was getting assigned to IS_SQLSERVER_SERVER property. Removing this entry from ComboBox table fixed the problem.
Thanks