SQLConnectionControl AutoRefreshDatabaseListOnServerChanged Property Control Documentation
If property value is true, then the database list will be refresh automatically after server name changes.

Namespace: ZsZ_Studio.Controls
Assembly: SQL.Connection.Control (in SQL.Connection.Control.dll) Version: 1.0.4947.20663 (1.0.0.0)
Syntax

public bool AutoRefreshDatabaseListOnServerChanged { get; set; }

Property Value

Type: OnlineBoolean
Remarks

The database list will be refresh only when the SelectedIndexChanged event fires on the server list combobox.
Examples

(VB.NET) This sample shows how to setup auto refresh property.
Dim scc As New ZsZ_Studio.Controls.SQLConnectionControl
scc.Location = New Point(10, 10)

scc.AutoRefreshDatabaseListOnServerChanged = True

Me.Controls.Add(scc)
See Also