_ Partial Class frmDiestEintrag 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(frmDiestEintrag)) Me.Label1 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.PictureBox1 = New System.Windows.Forms.PictureBox() Me.Label3 = New System.Windows.Forms.Label() Me.Label4 = New System.Windows.Forms.Label() Me.btnOK = New System.Windows.Forms.Button() Me.cboMA = New System.Windows.Forms.ComboBox() Me.datVon = New System.Windows.Forms.DateTimePicker() Me.datBis = New System.Windows.Forms.DateTimePicker() Me.txtInfo = New System.Windows.Forms.TextBox() Me.Label5 = New System.Windows.Forms.Label() CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label1.Location = New System.Drawing.Point(110, 9) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(135, 17) Me.Label1.TabIndex = 0 Me.Label1.Text = "Urlaub eintragen:" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(110, 36) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(59, 13) Me.Label2.TabIndex = 0 Me.Label2.Text = "Mitarbeiter:" ' 'PictureBox1 ' Me.PictureBox1.Image = Global.ADMIN.My.Resources.Resources.urlaub Me.PictureBox1.Location = New System.Drawing.Point(12, 45) Me.PictureBox1.Name = "PictureBox1" Me.PictureBox1.Size = New System.Drawing.Size(88, 71) Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom Me.PictureBox1.TabIndex = 1 Me.PictureBox1.TabStop = False ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(110, 77) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(28, 13) Me.Label3.TabIndex = 0 Me.Label3.Text = "von:" ' 'Label4 ' Me.Label4.AutoSize = True Me.Label4.Location = New System.Drawing.Point(305, 77) Me.Label4.Name = "Label4" Me.Label4.Size = New System.Drawing.Size(23, 13) Me.Label4.TabIndex = 0 Me.Label4.Text = "bis:" ' 'btnOK ' Me.btnOK.Cursor = System.Windows.Forms.Cursors.Default Me.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat Me.btnOK.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(54, Byte), Integer), CType(CType(128, Byte), Integer)) Me.btnOK.Location = New System.Drawing.Point(467, 53) Me.btnOK.Name = "btnOK" Me.btnOK.Size = New System.Drawing.Size(132, 61) Me.btnOK.TabIndex = 2 Me.btnOK.Text = "OK" Me.btnOK.UseVisualStyleBackColor = True ' 'cboMA ' Me.cboMA.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend Me.cboMA.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems Me.cboMA.FormattingEnabled = True Me.cboMA.Location = New System.Drawing.Point(113, 53) Me.cboMA.Name = "cboMA" Me.cboMA.Size = New System.Drawing.Size(327, 21) Me.cboMA.TabIndex = 3 ' 'datVon ' Me.datVon.Location = New System.Drawing.Point(113, 94) Me.datVon.Name = "datVon" Me.datVon.Size = New System.Drawing.Size(132, 20) Me.datVon.TabIndex = 4 ' 'datBis ' Me.datBis.Location = New System.Drawing.Point(308, 94) Me.datBis.Name = "datBis" Me.datBis.Size = New System.Drawing.Size(132, 20) Me.datBis.TabIndex = 4 ' 'txtInfo ' Me.txtInfo.Location = New System.Drawing.Point(12, 135) Me.txtInfo.Multiline = True Me.txtInfo.Name = "txtInfo" Me.txtInfo.Size = New System.Drawing.Size(587, 57) Me.txtInfo.TabIndex = 5 ' 'Label5 ' Me.Label5.AutoSize = True Me.Label5.Location = New System.Drawing.Point(12, 119) Me.Label5.Name = "Label5" Me.Label5.Size = New System.Drawing.Size(28, 13) Me.Label5.TabIndex = 6 Me.Label5.Text = "Info:" ' 'frmDiestEintrag ' 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(612, 197) Me.Controls.Add(Me.Label5) Me.Controls.Add(Me.txtInfo) Me.Controls.Add(Me.datBis) Me.Controls.Add(Me.datVon) Me.Controls.Add(Me.cboMA) Me.Controls.Add(Me.btnOK) Me.Controls.Add(Me.PictureBox1) Me.Controls.Add(Me.Label4) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.Name = "frmDiestEintrag" Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "Eintrag" CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox Friend WithEvents Label3 As System.Windows.Forms.Label Friend WithEvents Label4 As System.Windows.Forms.Label Friend WithEvents btnOK As System.Windows.Forms.Button Friend WithEvents cboMA As System.Windows.Forms.ComboBox Friend WithEvents datVon As System.Windows.Forms.DateTimePicker Friend WithEvents datBis As System.Windows.Forms.DateTimePicker Friend WithEvents txtInfo As System.Windows.Forms.TextBox Friend WithEvents Label5 As System.Windows.Forms.Label End Class