SDL Jetzt erst recht!

This commit is contained in:
2019-08-08 12:34:08 +02:00
parent f336f214e9
commit 5cbb13561f
1496 changed files with 522451 additions and 0 deletions

19
SDL/Form3.vb Normal file
View File

@@ -0,0 +1,19 @@
Public Class Form3
Public AktivId As String
Private Sub txtBesonderheiten_TextChanged(sender As Object, e As EventArgs) Handles txtBesonderheiten.TextChanged
'txtBesonderheiten
'txtKdNr
End Sub
Friend Sub LoadOrders(ByVal AktivIdtmp As String)
'OrdersTableAdapter.FillByCustomerID(NorthwindDataSet.Orders, CustomerID)
AktivId = AktivIdtmp
' MsgBox(AktivId)
End Sub
Private Sub Form3_Load(sender As Object, e As EventArgs) Handles Me.Load
txtKdNr.Text = AktivId
End Sub
End Class