SQL Update und Kopie nach Suben für Bestellungen

This commit is contained in:
ms
2023-01-12 09:30:46 +01:00
parent 1fd9bfb412
commit 9b4f200684
8 changed files with 59 additions and 7 deletions

View File

@@ -24,6 +24,7 @@ Partial Class Form1
Private Sub InitializeComponent()
Me.btnUpload = New System.Windows.Forms.Button()
Me.bntUploadAndClose = New System.Windows.Forms.Button()
Me.Button1 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'btnUpload
@@ -44,11 +45,21 @@ Partial Class Form1
Me.bntUploadAndClose.Text = "Do it and Close !"
Me.bntUploadAndClose.UseVisualStyleBackColor = True
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(363, 214)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(75, 23)
Me.Button1.TabIndex = 2
Me.Button1.Text = "Do SQL!"
Me.Button1.UseVisualStyleBackColor = True
'
'Form1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(800, 450)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.bntUploadAndClose)
Me.Controls.Add(Me.btnUpload)
Me.Name = "Form1"
@@ -59,4 +70,5 @@ Partial Class Form1
Friend WithEvents btnUpload As Button
Friend WithEvents bntUploadAndClose As Button
Friend WithEvents Button1 As Button
End Class