List&Label Anfängerfrage Anbindung mit 2 Tabellen

Hallo Liebe List&Label Profis,

ich habe eine Frage. Wie kann ich 2 Tabellen zB für Rechnungen (Vorgang/Leistungen) einbinden bzw übergeben. 1 Tabelle ist ja kein Problem aber 2 ?

[code] Dim conn As New SqlConnection( _
“Password=” & SQLPasswort & “;Persist Security Info=True;” & _
“User ID=” & SQLBenutzer & “;Initial Catalog=” & SQLDb & “;” & _
“Data Source=” & SQLServer & “;”)
Try

        Dim SQL As String = "SELECT * FROM dbo.Vorgange WHERE Nr LIKE " & Vorgange.UltraGrid1.ActiveRow.Cells("Nr").Value.ToString()



        Dim da As New SqlDataAdapter(SQL, conn)
        Dim cmdB As New SqlCommandBuilder(da)
        Dim ds As New DataSet()
        conn.Open()
        ds.Clear()
        da.Fill(ds, "Vorgang")
      

        LL.AutoMasterMode = combit.ListLabel15.LlAutoMasterMode.AsVariables
        LL.DataSource = ds
        LL.DataMember = "Vorgang"
        LL.Design()



        conn.Close()

       

    Catch ex As Exception
        MessageBox.Show(ex.Message, "Noha Fehler", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
    Finally
        If conn.State <> ConnectionState.Closed Then conn.Close()
    End Try[/code]

Über jede Hilfe würde ich mich freuen. Bin Anfänger in der Net und List&Label Welt.
Vielen Dank im Voraus.
Frank