Aktuelle Woche kann manuell überschrieben werden

This commit is contained in:
ms
2025-02-24 08:43:06 +01:00
parent a43f604eb2
commit 7365379812
6 changed files with 113 additions and 19 deletions

View File

@@ -25,6 +25,7 @@ Partial Class Form1
Me.btnUpload = New System.Windows.Forms.Button()
Me.bntUploadAndClose = New System.Windows.Forms.Button()
Me.Button1 = New System.Windows.Forms.Button()
Me.Button2 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'btnUpload
@@ -54,11 +55,21 @@ Partial Class Form1
Me.Button1.Text = "Do SQL!"
Me.Button1.UseVisualStyleBackColor = True
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(280, 362)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(200, 23)
Me.Button2.TabIndex = 3
Me.Button2.Text = "Aktuelle überschreiben"
Me.Button2.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.Button2)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.bntUploadAndClose)
Me.Controls.Add(Me.btnUpload)
@@ -71,4 +82,5 @@ Partial Class Form1
Friend WithEvents btnUpload As Button
Friend WithEvents bntUploadAndClose As Button
Friend WithEvents Button1 As Button
Friend WithEvents Button2 As Button
End Class