Partial Class frmFileTest Inherits BaseForm 'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen. Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Wird vom Windows Form-Designer benötigt. Private components As System.ComponentModel.IContainer 'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich. 'Das Bearbeiten ist mit dem Windows Form-Designer möglich. 'Das Bearbeiten mit dem Code-Editor ist nicht möglich. Private Sub InitializeComponent() Me.Button1 = New System.Windows.Forms.Button() Me.listboxLog = New System.Windows.Forms.ListBox() Me.btnDocByDocId = New System.Windows.Forms.Button() Me.TextBox1 = New System.Windows.Forms.TextBox() Me.btnDocByContainerId = New System.Windows.Forms.Button() Me.TextBox2 = New System.Windows.Forms.TextBox() Me.TextBox3 = New System.Windows.Forms.TextBox() Me.TextBox4 = New System.Windows.Forms.TextBox() Me.Button2 = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(12, 12) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(102, 27) Me.Button1.TabIndex = 0 Me.Button1.Text = "Upload file" Me.Button1.UseVisualStyleBackColor = True ' 'listboxLog ' Me.listboxLog.Dock = System.Windows.Forms.DockStyle.Bottom Me.listboxLog.FormattingEnabled = True Me.listboxLog.Location = New System.Drawing.Point(0, 225) Me.listboxLog.Name = "listboxLog" Me.listboxLog.Size = New System.Drawing.Size(800, 225) Me.listboxLog.TabIndex = 1 ' 'btnDocByDocId ' Me.btnDocByDocId.Location = New System.Drawing.Point(655, 12) Me.btnDocByDocId.Name = "btnDocByDocId" Me.btnDocByDocId.Size = New System.Drawing.Size(133, 32) Me.btnDocByDocId.TabIndex = 2 Me.btnDocByDocId.Text = "GetDocByDocId" Me.btnDocByDocId.UseVisualStyleBackColor = True ' 'TextBox1 ' Me.TextBox1.Location = New System.Drawing.Point(425, 24) Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(224, 20) Me.TextBox1.TabIndex = 3 ' 'btnDocByContainerId ' Me.btnDocByContainerId.Location = New System.Drawing.Point(655, 50) Me.btnDocByContainerId.Name = "btnDocByContainerId" Me.btnDocByContainerId.Size = New System.Drawing.Size(133, 32) Me.btnDocByContainerId.TabIndex = 4 Me.btnDocByContainerId.Text = "GetDocByContainerId" Me.btnDocByContainerId.UseVisualStyleBackColor = True ' 'TextBox2 ' Me.TextBox2.Location = New System.Drawing.Point(425, 62) Me.TextBox2.Name = "TextBox2" Me.TextBox2.Size = New System.Drawing.Size(224, 20) Me.TextBox2.TabIndex = 3 ' 'TextBox3 ' Me.TextBox3.Location = New System.Drawing.Point(425, 138) Me.TextBox3.Name = "TextBox3" Me.TextBox3.Size = New System.Drawing.Size(224, 20) Me.TextBox3.TabIndex = 5 ' 'TextBox4 ' Me.TextBox4.Location = New System.Drawing.Point(425, 112) Me.TextBox4.Name = "TextBox4" Me.TextBox4.Size = New System.Drawing.Size(224, 20) Me.TextBox4.TabIndex = 5 ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(655, 126) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(133, 32) Me.Button2.TabIndex = 4 Me.Button2.Text = "GetDocByContainerId" Me.Button2.UseVisualStyleBackColor = True ' '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.TextBox4) Me.Controls.Add(Me.TextBox3) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.btnDocByContainerId) Me.Controls.Add(Me.TextBox2) Me.Controls.Add(Me.TextBox1) Me.Controls.Add(Me.btnDocByDocId) Me.Controls.Add(Me.listboxLog) Me.Controls.Add(Me.Button1) Me.Name = "frmFileTest" Me.Text = "frmFileTest" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button1 As Button Friend WithEvents listboxLog As ListBox Friend WithEvents btnDocByDocId As Button Friend WithEvents TextBox1 As TextBox Friend WithEvents btnDocByContainerId As Button Friend WithEvents TextBox2 As TextBox Friend WithEvents TextBox3 As TextBox Friend WithEvents TextBox4 As TextBox Friend WithEvents Button2 As Button End Class