This commit is contained in:
2024-10-01 16:32:40 +02:00
parent 76fbf96823
commit fad2055152
2987 changed files with 13801 additions and 200 deletions

View File

@@ -1,18 +0,0 @@
Imports System.Collections.Generic
Imports System.Text
Public Class SourceListWrapper
Private m_listSourceNames As List(Of String) = Nothing
Public Sub New(listSourceNames As List(Of String))
m_listSourceNames = listSourceNames
End Sub
Private m_SelectedIndex As Integer = 0
Public Function SelectSource() As Integer
Dim temp As New frmSourceList(m_listSourceNames)
temp.ShowDialog()
m_SelectedIndex = temp.GetSelectedIndex()
Return m_SelectedIndex
End Function
End Class