_ Partial Class frmAlert 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() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAlert)) Me.Panel1 = New System.Windows.Forms.Panel() Me.Label1 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.Button1 = New System.Windows.Forms.Button() Me.txtBuergschaft = New System.Windows.Forms.Label() Me.lblAktWert = New System.Windows.Forms.Label() Me.lblReferenzbetrag = New System.Windows.Forms.Label() Me.Button2 = New System.Windows.Forms.Button() Me.pnl = New System.Windows.Forms.Panel() Me.Panel1.SuspendLayout() Me.pnl.SuspendLayout() Me.SuspendLayout() ' 'Panel1 ' Me.Panel1.BackColor = System.Drawing.Color.Red Me.Panel1.Controls.Add(Me.Label1) Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top Me.Panel1.Location = New System.Drawing.Point(0, 0) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(432, 50) Me.Panel1.TabIndex = 0 ' 'Label1 ' Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 16.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label1.ForeColor = System.Drawing.Color.White Me.Label1.Location = New System.Drawing.Point(15, 0) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(233, 50) Me.Label1.TabIndex = 0 Me.Label1.Text = "ACHTUNG" Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label2.Location = New System.Drawing.Point(15, 69) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(272, 34) Me.Label2.TabIndex = 3 Me.Label2.Text = "Diese Bürgschaft hat den kritischen " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Wert überschritten:" ' 'Button1 ' Me.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.Button1.Location = New System.Drawing.Point(20, 212) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(165, 37) Me.Button1.TabIndex = 2 Me.Button1.Text = "Meldung bestätigen" Me.Button1.UseVisualStyleBackColor = True ' 'txtBuergschaft ' Me.txtBuergschaft.AutoSize = True Me.txtBuergschaft.Font = New System.Drawing.Font("Microsoft Sans Serif", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.txtBuergschaft.Location = New System.Drawing.Point(17, 120) Me.txtBuergschaft.Name = "txtBuergschaft" Me.txtBuergschaft.Size = New System.Drawing.Size(48, 20) Me.txtBuergschaft.TabIndex = 3 Me.txtBuergschaft.Text = "BRG" ' 'lblAktWert ' Me.lblAktWert.AutoSize = True Me.lblAktWert.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblAktWert.Location = New System.Drawing.Point(17, 157) Me.lblAktWert.Name = "lblAktWert" Me.lblAktWert.Size = New System.Drawing.Size(121, 17) Me.lblAktWert.TabIndex = 3 Me.lblAktWert.Text = "Aktueller Wert: " ' 'lblReferenzbetrag ' Me.lblReferenzbetrag.AutoSize = True Me.lblReferenzbetrag.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lblReferenzbetrag.Location = New System.Drawing.Point(17, 174) Me.lblReferenzbetrag.Name = "lblReferenzbetrag" Me.lblReferenzbetrag.Size = New System.Drawing.Size(131, 17) Me.lblReferenzbetrag.TabIndex = 3 Me.lblReferenzbetrag.Text = "Referenzbetrag: " ' 'Button2 ' Me.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.Button2.Location = New System.Drawing.Point(202, 212) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(136, 37) Me.Button2.TabIndex = 2 Me.Button2.Text = "Später" Me.Button2.UseVisualStyleBackColor = True Me.Button2.Visible = False ' 'pnl ' Me.pnl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.pnl.Controls.Add(Me.Panel1) Me.pnl.Controls.Add(Me.lblReferenzbetrag) Me.pnl.Controls.Add(Me.Button1) Me.pnl.Controls.Add(Me.lblAktWert) Me.pnl.Controls.Add(Me.Button2) Me.pnl.Controls.Add(Me.txtBuergschaft) Me.pnl.Controls.Add(Me.Label2) Me.pnl.Dock = System.Windows.Forms.DockStyle.Fill Me.pnl.Location = New System.Drawing.Point(0, 0) Me.pnl.Name = "pnl" Me.pnl.Size = New System.Drawing.Size(434, 261) Me.pnl.TabIndex = 4 ' 'frmAlert ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.BackColor = System.Drawing.Color.White Me.ClientSize = New System.Drawing.Size(434, 261) Me.Controls.Add(Me.pnl) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "frmAlert" Me.Text = "ALARM" Me.TopMost = True Me.Panel1.ResumeLayout(False) Me.pnl.ResumeLayout(False) Me.pnl.PerformLayout() Me.ResumeLayout(False) End Sub Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Button1 As System.Windows.Forms.Button Friend WithEvents txtBuergschaft As System.Windows.Forms.Label Friend WithEvents lblAktWert As System.Windows.Forms.Label Friend WithEvents lblReferenzbetrag As System.Windows.Forms.Label Friend WithEvents Button2 As System.Windows.Forms.Button Friend WithEvents pnl As System.Windows.Forms.Panel End Class