This commit is contained in:
JenneJ
2015-11-16 15:28:39 +01:00
parent 69b738413a
commit a7f86eb783
24 changed files with 341 additions and 6741 deletions

View File

@@ -23,6 +23,7 @@ Partial Class frmCustomAppointment
Me.txtRecordID = New System.Windows.Forms.TextBox()
Me.txtControlID = New System.Windows.Forms.TextBox()
Me.Label2 = New System.Windows.Forms.Label()
Me.btnJumpToRecord = New System.Windows.Forms.Button()
CType(Me.chkAllDay.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.edtStartDate.Properties.CalendarTimeProperties, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.edtStartDate.Properties, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -65,10 +66,12 @@ Partial Class frmCustomAppointment
'edtStartTime
'
Me.edtStartTime.EditValue = New Date(2005, 3, 31, 0, 0, 0, 0)
Me.edtStartTime.Properties.Mask.EditMask = "t"
'
'edtEndTime
'
Me.edtEndTime.EditValue = New Date(2005, 3, 31, 0, 0, 0, 0)
Me.edtEndTime.Properties.Mask.EditMask = "t"
'
'edtLabel
'
@@ -154,10 +157,23 @@ Partial Class frmCustomAppointment
Me.Label2.TabIndex = 32
Me.Label2.Text = "Control-ID:"
'
'btnJumpToRecord
'
Me.btnJumpToRecord.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
Me.btnJumpToRecord.Image = Global.DD_Record_Organiser.My.Resources.Resources.arrow_Forward_16xLG
Me.btnJumpToRecord.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.btnJumpToRecord.Location = New System.Drawing.Point(412, 348)
Me.btnJumpToRecord.Name = "btnJumpToRecord"
Me.btnJumpToRecord.Size = New System.Drawing.Size(100, 23)
Me.btnJumpToRecord.TabIndex = 33
Me.btnJumpToRecord.Text = "Zum Record"
Me.btnJumpToRecord.UseVisualStyleBackColor = True
'
'frmCustomAppointment
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.ClientSize = New System.Drawing.Size(528, 382)
Me.Controls.Add(Me.btnJumpToRecord)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.txtControlID)
Me.Controls.Add(Me.txtRecordID)
@@ -187,6 +203,7 @@ Partial Class frmCustomAppointment
Me.Controls.SetChildIndex(Me.txtRecordID, 0)
Me.Controls.SetChildIndex(Me.txtControlID, 0)
Me.Controls.SetChildIndex(Me.Label2, 0)
Me.Controls.SetChildIndex(Me.btnJumpToRecord, 0)
CType(Me.chkAllDay.Properties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.edtStartDate.Properties.CalendarTimeProperties, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.edtStartDate.Properties, System.ComponentModel.ISupportInitialize).EndInit()
@@ -219,5 +236,6 @@ Partial Class frmCustomAppointment
Friend WithEvents txtRecordID As System.Windows.Forms.TextBox
Friend WithEvents txtControlID As System.Windows.Forms.TextBox
Friend WithEvents Label2 As System.Windows.Forms.Label
Friend WithEvents btnJumpToRecord As System.Windows.Forms.Button
End Class