0
を作成:VB.NETは、私はいくつかの値を返すべき機能を持っているデータベースから値を取得し、ドロップダウンメニュー
Public Function vratiTvrtke(ByVal hwid As String)
Dim hardware As String = hwid
Dim result = New List(Of String)()
Try
ManageConnection(False, konekcija) 'Open connection'
Dim strQuery As String = "SELECT tvrtke_naziv, dabase FROM info.tvrtke;"
Dim SqlCmd As New MySqlCommand(strQuery, dbCon)
Dim reader As MySqlDataReader = SqlCmd.ExecuteReader()
While reader.Read()
End While
reader.Close()
Return result
Catch ex As MySqlException
Console.WriteLine("Error: " & ex.ToString())
Return Nothing
Finally
ManageConnection(True, konekcija) 'Close connection
End Try
End Function
データでは、私は、メニューを作る必要があり、上記の関数から返さ:
Public Function pripremiSucelje()
Dim barmanager1 As New BarManager
Dim barButtonItem = New BarButtonItem()
barButtonItem.Content = [tvrtke_naziv]
barButtonItem.Name = [dabase]
Tvrtka.Items.Add(barButtonItem)
End Function
物事は、第二の関数では、おそらく最初の関数は複数の行を返すので、私はおそらく "それぞれの"ループを実装する必要があります。
これはどのように達成できますか?
ありがとうございます! – RaceLt
@RaceLtデータベースを使って作業することは、実用的であり、データを扱うのに適したクラスを作成するのがよい習慣であることを覚えておいてください。 – Mederic