_ Partial Class frmExcelSheets 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.lstSheets = New System.Windows.Forms.ListBox Me.BtnOK = New System.Windows.Forms.Button Me.BtnAbbruch = New System.Windows.Forms.Button Me.SuspendLayout() ' 'lstSheets ' Me.lstSheets.FormattingEnabled = True Me.lstSheets.Location = New System.Drawing.Point(12, 32) Me.lstSheets.Name = "lstSheets" Me.lstSheets.Size = New System.Drawing.Size(220, 134) Me.lstSheets.TabIndex = 0 ' 'BtnOK ' Me.BtnOK.Location = New System.Drawing.Point(12, 193) Me.BtnOK.Name = "BtnOK" Me.BtnOK.Size = New System.Drawing.Size(75, 23) Me.BtnOK.TabIndex = 1 Me.BtnOK.Text = "Auswählen" Me.BtnOK.UseVisualStyleBackColor = True ' 'BtnAbbruch ' Me.BtnAbbruch.Location = New System.Drawing.Point(157, 193) Me.BtnAbbruch.Name = "BtnAbbruch" Me.BtnAbbruch.Size = New System.Drawing.Size(75, 23) Me.BtnAbbruch.TabIndex = 2 Me.BtnAbbruch.Text = "Abbruch" Me.BtnAbbruch.UseVisualStyleBackColor = True ' 'frmExcelSheets ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(254, 228) Me.Controls.Add(Me.BtnAbbruch) Me.Controls.Add(Me.BtnOK) Me.Controls.Add(Me.lstSheets) Me.Name = "frmExcelSheets" Me.Text = "Auswahl Excel-Blatt" Me.ResumeLayout(False) End Sub Friend WithEvents lstSheets As System.Windows.Forms.ListBox Friend WithEvents BtnOK As System.Windows.Forms.Button Friend WithEvents BtnAbbruch As System.Windows.Forms.Button End Class