Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim sqlApp As New SQLDMO.Application
Dim NL As SQLDMO.NameList
Set NL = sqlApp.ListAvailableSQLServers
For index = 1 To NL.Count
cboServers.AddItem NL.Item(index)
Next
Dim sqlApp As New SQLDMO.Application
Dim NL As SQLDMO.NameList
Dim a As Integer
NL = sqlApp.ListAvailableSQLServers
For a = 1 To NL.Count
cboServers.Items.Add(NL.Item(a))
Next