_ Partial Class frmPhaseDetail 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.cbboxphase = New System.Windows.Forms.ComboBox() Me.txtBeschreibung = New System.Windows.Forms.TextBox() Me.txtDatum = New System.Windows.Forms.MaskedTextBox() Me.dtDatum = New System.Windows.Forms.DateTimePicker() Me.lblphase = New System.Windows.Forms.Label() Me.lblDatum = New System.Windows.Forms.Label() Me.lblBeschreibung = New System.Windows.Forms.Label() Me.btnOK = New System.Windows.Forms.Button() Me.btnAbbruch = New System.Windows.Forms.Button() Me.btnronlyok = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'cbboxphase ' Me.cbboxphase.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend Me.cbboxphase.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems Me.cbboxphase.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList Me.cbboxphase.FormattingEnabled = True Me.cbboxphase.Location = New System.Drawing.Point(85, 12) Me.cbboxphase.Name = "cbboxphase" Me.cbboxphase.Size = New System.Drawing.Size(245, 21) Me.cbboxphase.TabIndex = 0 ' 'txtBeschreibung ' Me.txtBeschreibung.Location = New System.Drawing.Point(85, 65) Me.txtBeschreibung.Multiline = True Me.txtBeschreibung.Name = "txtBeschreibung" Me.txtBeschreibung.Size = New System.Drawing.Size(245, 99) Me.txtBeschreibung.TabIndex = 2 ' 'txtDatum ' Me.txtDatum.Location = New System.Drawing.Point(85, 39) Me.txtDatum.Mask = "00/00/0000" Me.txtDatum.Name = "txtDatum" Me.txtDatum.Size = New System.Drawing.Size(66, 20) Me.txtDatum.TabIndex = 1 Me.txtDatum.ValidatingType = GetType(Date) ' 'dtDatum ' Me.dtDatum.Format = System.Windows.Forms.DateTimePickerFormat.[Short] Me.dtDatum.Location = New System.Drawing.Point(151, 39) Me.dtDatum.Name = "dtDatum" Me.dtDatum.Size = New System.Drawing.Size(17, 20) Me.dtDatum.TabIndex = 24 ' 'lblphase ' Me.lblphase.AutoSize = True Me.lblphase.Location = New System.Drawing.Point(13, 19) Me.lblphase.Name = "lblphase" Me.lblphase.Size = New System.Drawing.Size(37, 13) Me.lblphase.TabIndex = 26 Me.lblphase.Text = "Phase" ' 'lblDatum ' Me.lblDatum.AutoSize = True Me.lblDatum.Location = New System.Drawing.Point(13, 42) Me.lblDatum.Name = "lblDatum" Me.lblDatum.Size = New System.Drawing.Size(38, 13) Me.lblDatum.TabIndex = 27 Me.lblDatum.Text = "Datum" ' 'lblBeschreibung ' Me.lblBeschreibung.AutoSize = True Me.lblBeschreibung.Location = New System.Drawing.Point(12, 65) Me.lblBeschreibung.Name = "lblBeschreibung" Me.lblBeschreibung.Size = New System.Drawing.Size(72, 13) Me.lblBeschreibung.TabIndex = 28 Me.lblBeschreibung.Text = "Beschreibung" ' 'btnOK ' Me.btnOK.Location = New System.Drawing.Point(9, 185) Me.btnOK.Name = "btnOK" Me.btnOK.Size = New System.Drawing.Size(75, 23) Me.btnOK.TabIndex = 3 Me.btnOK.Text = "OK" Me.btnOK.UseVisualStyleBackColor = True ' 'btnAbbruch ' Me.btnAbbruch.Location = New System.Drawing.Point(255, 185) Me.btnAbbruch.Name = "btnAbbruch" Me.btnAbbruch.Size = New System.Drawing.Size(75, 23) Me.btnAbbruch.TabIndex = 4 Me.btnAbbruch.Text = "Abbruch" Me.btnAbbruch.UseVisualStyleBackColor = True ' 'btnronlyok ' Me.btnronlyok.Location = New System.Drawing.Point(141, 185) Me.btnronlyok.Name = "btnronlyok" Me.btnronlyok.Size = New System.Drawing.Size(75, 23) Me.btnronlyok.TabIndex = 5 Me.btnronlyok.Text = "OK" Me.btnronlyok.UseVisualStyleBackColor = True ' 'frmPhaseDetail ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(353, 217) Me.Controls.Add(Me.btnronlyok) Me.Controls.Add(Me.btnAbbruch) Me.Controls.Add(Me.btnOK) Me.Controls.Add(Me.lblBeschreibung) Me.Controls.Add(Me.lblDatum) Me.Controls.Add(Me.lblphase) Me.Controls.Add(Me.txtDatum) Me.Controls.Add(Me.dtDatum) Me.Controls.Add(Me.txtBeschreibung) Me.Controls.Add(Me.cbboxphase) Me.Name = "frmPhaseDetail" Me.Text = "Phase-Details" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents cbboxphase As System.Windows.Forms.ComboBox Friend WithEvents txtBeschreibung As System.Windows.Forms.TextBox Friend WithEvents txtDatum As System.Windows.Forms.MaskedTextBox Friend WithEvents dtDatum As System.Windows.Forms.DateTimePicker Friend WithEvents lblphase As System.Windows.Forms.Label Friend WithEvents lblDatum As System.Windows.Forms.Label Friend WithEvents lblBeschreibung As System.Windows.Forms.Label Friend WithEvents btnOK As System.Windows.Forms.Button Friend WithEvents btnAbbruch As System.Windows.Forms.Button Friend WithEvents btnronlyok As System.Windows.Forms.Button End Class