1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
InitializeTooltips()
Try
Dim arr As ArrayList
arr = CType(ConfigurationSettings.GetConfig("MessagesQueueManager/ServersList"), ArrayList)
ServerListDataSource = arr
Catch ex As Exception
End Try
End Sub
<Description("The Items in the Server list box")> _
Public Property ServerListDataSource() As Object
Get
Return ComboBoxServerList.DataSource
End Get
Set(ByVal Value As Object)
ComboBoxServerList.DataSource = Value
End Set
End Property |
Partager