Added OK button

closes #1
This commit is contained in:
mw 2024-01-15 10:19:17 +01:00
parent c08ccfa2e1
commit d36e659c72
3 changed files with 143 additions and 1 deletions

21
Form1.Designer.vb generated
View file

@ -22,10 +22,29 @@ Partial Class Form1
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
components = New System.ComponentModel.Container()
Me.Button1 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(376, 285)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(107, 39)
Me.Button1.TabIndex = 0
Me.Button1.Text = "OK"
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.Name = "Form1"
Me.Text = "Form1"
Me.ResumeLayout(False)
End Sub
Friend WithEvents Button1 As Button
End Class