This commit is contained in:
Digital Data - Marlon Schreiber
2018-12-28 14:07:10 +01:00
parent f22d7ce643
commit 7712562451
5 changed files with 32 additions and 5 deletions

View File

@@ -23,6 +23,7 @@ Partial Class frmFileTest
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.Button1 = New System.Windows.Forms.Button()
Me.ListBox1 = New System.Windows.Forms.ListBox()
Me.SuspendLayout()
'
'Button1
@@ -34,11 +35,20 @@ Partial Class frmFileTest
Me.Button1.Text = "Upload file"
Me.Button1.UseVisualStyleBackColor = True
'
'ListBox1
'
Me.ListBox1.FormattingEnabled = True
Me.ListBox1.Location = New System.Drawing.Point(12, 45)
Me.ListBox1.Name = "ListBox1"
Me.ListBox1.Size = New System.Drawing.Size(256, 95)
Me.ListBox1.TabIndex = 1
'
'frmFileTest
'
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.ListBox1)
Me.Controls.Add(Me.Button1)
Me.Name = "frmFileTest"
Me.Text = "frmFileTest"
@@ -47,4 +57,5 @@ Partial Class frmFileTest
End Sub
Friend WithEvents Button1 As Button
Friend WithEvents ListBox1 As ListBox
End Class