_ Partial Class frmImportExport Inherits System.Windows.Forms.Form '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.btnExport = New System.Windows.Forms.Button() Me.btnImport = New System.Windows.Forms.Button() Me.GrpExport = New System.Windows.Forms.GroupBox() Me.btnDoExport = New System.Windows.Forms.Button() Me.Label1 = New System.Windows.Forms.Label() Me.ComboBox1 = New System.Windows.Forms.ComboBox() Me.OpenFileDialog1 = New System.Windows.Forms.OpenFileDialog() Me.SaveFileDialog1 = New System.Windows.Forms.SaveFileDialog() Me.GrpImport = New System.Windows.Forms.GroupBox() Me.Button1 = New System.Windows.Forms.Button() Me.txtImportDatei = New System.Windows.Forms.TextBox() Me.GrpExport.SuspendLayout() Me.GrpImport.SuspendLayout() Me.SuspendLayout() ' 'btnExport ' Me.btnExport.Location = New System.Drawing.Point(12, 12) Me.btnExport.Name = "btnExport" Me.btnExport.Size = New System.Drawing.Size(75, 23) Me.btnExport.TabIndex = 0 Me.btnExport.Text = "Export" Me.btnExport.UseVisualStyleBackColor = True ' 'btnImport ' Me.btnImport.Location = New System.Drawing.Point(93, 12) Me.btnImport.Name = "btnImport" Me.btnImport.Size = New System.Drawing.Size(75, 23) Me.btnImport.TabIndex = 1 Me.btnImport.Text = "Import" Me.btnImport.UseVisualStyleBackColor = True ' 'GrpExport ' Me.GrpExport.Controls.Add(Me.GrpImport) Me.GrpExport.Controls.Add(Me.btnDoExport) Me.GrpExport.Controls.Add(Me.Label1) Me.GrpExport.Controls.Add(Me.ComboBox1) Me.GrpExport.Location = New System.Drawing.Point(12, 41) Me.GrpExport.Name = "GrpExport" Me.GrpExport.Size = New System.Drawing.Size(607, 197) Me.GrpExport.TabIndex = 2 Me.GrpExport.TabStop = False Me.GrpExport.Visible = False ' 'btnDoExport ' Me.btnDoExport.Location = New System.Drawing.Point(9, 69) Me.btnDoExport.Name = "btnDoExport" Me.btnDoExport.Size = New System.Drawing.Size(75, 23) Me.btnDoExport.TabIndex = 3 Me.btnDoExport.Text = "Eportieren" Me.btnDoExport.UseVisualStyleBackColor = True ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(6, 22) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(70, 13) Me.Label1.TabIndex = 1 Me.Label1.Text = "Dokumenttyp" ' 'ComboBox1 ' Me.ComboBox1.FormattingEnabled = True Me.ComboBox1.Location = New System.Drawing.Point(100, 19) Me.ComboBox1.Name = "ComboBox1" Me.ComboBox1.Size = New System.Drawing.Size(288, 21) Me.ComboBox1.TabIndex = 0 ' 'OpenFileDialog1 ' Me.OpenFileDialog1.FileName = "OpenFileDialog1" ' 'GrpImport ' Me.GrpImport.Controls.Add(Me.txtImportDatei) Me.GrpImport.Controls.Add(Me.Button1) Me.GrpImport.Location = New System.Drawing.Point(0, 0) Me.GrpImport.Name = "GrpImport" Me.GrpImport.Size = New System.Drawing.Size(607, 188) Me.GrpImport.TabIndex = 4 Me.GrpImport.TabStop = False ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(1, 17) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(75, 23) Me.Button1.TabIndex = 0 Me.Button1.Text = "Import-Datei" Me.Button1.UseVisualStyleBackColor = True ' 'txtImportDatei ' Me.txtImportDatei.Location = New System.Drawing.Point(81, 19) Me.txtImportDatei.Name = "txtImportDatei" Me.txtImportDatei.Size = New System.Drawing.Size(458, 20) Me.txtImportDatei.TabIndex = 1 ' 'frmImportExport ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(631, 240) Me.Controls.Add(Me.GrpExport) Me.Controls.Add(Me.btnImport) Me.Controls.Add(Me.btnExport) Me.Name = "frmImportExport" Me.Text = "Dokumenttyp Export / Import" Me.GrpExport.ResumeLayout(False) Me.GrpExport.PerformLayout() Me.GrpImport.ResumeLayout(False) Me.GrpImport.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents btnExport As Windows.Forms.Button Friend WithEvents btnImport As Windows.Forms.Button Friend WithEvents GrpExport As Windows.Forms.GroupBox Friend WithEvents btnDoExport As Windows.Forms.Button Friend WithEvents Label1 As Windows.Forms.Label Friend WithEvents ComboBox1 As Windows.Forms.ComboBox Friend WithEvents OpenFileDialog1 As Windows.Forms.OpenFileDialog Friend WithEvents SaveFileDialog1 As Windows.Forms.SaveFileDialog Friend WithEvents GrpImport As Windows.Forms.GroupBox Friend WithEvents txtImportDatei As Windows.Forms.TextBox Friend WithEvents Button1 As Windows.Forms.Button End Class