_ Partial Class frmErrorList 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.txtErrors = New DevExpress.XtraEditors.MemoEdit() Me.lblErrorTitle = New DevExpress.XtraEditors.LabelControl() Me.panBottom = New DevExpress.XtraEditors.PanelControl() Me.btnOK = New DevExpress.XtraEditors.SimpleButton() CType(Me.txtErrors.Properties, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.panBottom, System.ComponentModel.ISupportInitialize).BeginInit() Me.panBottom.SuspendLayout() Me.SuspendLayout() ' 'txtErrors ' Me.txtErrors.Dock = System.Windows.Forms.DockStyle.Fill Me.txtErrors.Location = New System.Drawing.Point(0, 36) Me.txtErrors.Name = "txtErrors" Me.txtErrors.Properties.ReadOnly = True Me.txtErrors.Size = New System.Drawing.Size(682, 386) Me.txtErrors.TabIndex = 1 ' 'lblErrorTitle ' Me.lblErrorTitle.Appearance.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblErrorTitle.Appearance.ForeColor = System.Drawing.Color.Red Me.lblErrorTitle.Appearance.Options.UseFont = True Me.lblErrorTitle.Appearance.Options.UseForeColor = True Me.lblErrorTitle.Appearance.Options.UseTextOptions = True Me.lblErrorTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center Me.lblErrorTitle.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center Me.lblErrorTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Vertical Me.lblErrorTitle.Dock = System.Windows.Forms.DockStyle.Top Me.lblErrorTitle.Location = New System.Drawing.Point(0, 0) Me.lblErrorTitle.Name = "lblErrorTitle" Me.lblErrorTitle.Padding = New System.Windows.Forms.Padding(10) Me.lblErrorTitle.Size = New System.Drawing.Size(682, 36) Me.lblErrorTitle.TabIndex = 1 Me.lblErrorTitle.Text = "Beim Ausführen der Aktion sind ein oder mehrere Fehler aufgetreten:" ' 'panBottom ' Me.panBottom.Controls.Add(Me.btnOK) Me.panBottom.Dock = System.Windows.Forms.DockStyle.Bottom Me.panBottom.Location = New System.Drawing.Point(0, 422) Me.panBottom.Name = "panBottom" Me.panBottom.Size = New System.Drawing.Size(682, 41) Me.panBottom.TabIndex = 2 ' 'btnOK ' Me.btnOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom Me.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK Me.btnOK.Location = New System.Drawing.Point(291, 6) Me.btnOK.Name = "btnOK" Me.btnOK.Size = New System.Drawing.Size(101, 23) Me.btnOK.TabIndex = 0 Me.btnOK.Text = "OK" ' 'frmErrorList ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(682, 463) Me.Controls.Add(Me.txtErrors) Me.Controls.Add(Me.lblErrorTitle) Me.Controls.Add(Me.panBottom) Me.Name = "frmErrorList" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "Aufgetretene Fehler" CType(Me.txtErrors.Properties, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.panBottom, System.ComponentModel.ISupportInitialize).EndInit() Me.panBottom.ResumeLayout(False) Me.ResumeLayout(False) End Sub Friend WithEvents txtErrors As DevExpress.XtraEditors.MemoEdit Friend WithEvents lblErrorTitle As DevExpress.XtraEditors.LabelControl Friend WithEvents panBottom As DevExpress.XtraEditors.PanelControl Friend WithEvents btnOK As DevExpress.XtraEditors.SimpleButton End Class