Changeset 1126
- Timestamp:
- Mar 30, 2011, 6:18:19 AM (14 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs
r1125 r1126 3345 3345 //Today's appointments 3346 3346 var todaysAppts = (from lkappts in this.Document.Appointments.AppointmentTable.Values.Cast<CGAppointment>() 3347 where lkappts.StartTime > appt.StartTime.Date && lkappts.StartTime < appt.StartTime.AddDays(1).Date 3347 where lkappts.StartTime > appt.StartTime.Date && lkappts.StartTime < appt.StartTime.AddDays(1).Date && lkappts.Resource == appt.Resource 3348 3348 orderby lkappts.StartTime 3349 3349 select lkappts).ToList(); -
Scheduling/trunk/cs/bsdx0200GUISourceCode/Printing.cs
r1125 r1126 185 185 186 186 //string s = "Appointment Reminder Slip"; 187 string s = strings.ApptR outingSlip;187 string s = strings.ApptReminderSlip; 188 188 g.DrawString(s, fTitle, Brushes.Black, printArea, sf); //title 189 189 -
Scheduling/trunk/cs/bsdx0200GUISourceCode/strings.Designer.cs
r1119 r1126 89 89 90 90 /// <summary> 91 /// Looks up a localized string similar to Appointment R outingSlip.92 /// </summary> 93 internal static string ApptR outingSlip {94 get { 95 return ResourceManager.GetString("ApptR outingSlip", resourceCulture);91 /// Looks up a localized string similar to Appointment Reminder Slip. 92 /// </summary> 93 internal static string ApptReminderSlip { 94 get { 95 return ResourceManager.GetString("ApptReminderSlip", resourceCulture); 96 96 } 97 97 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/strings.ar.resx
r1119 r1126 127 127 <value>تفاصيل الموعد</value> 128 128 </data> 129 <data name="ApptR outingSlip" xml:space="preserve">129 <data name="ApptReminderSlip" xml:space="preserve"> 130 130 <value>بطاقة المراجعة</value> 131 131 </data> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/strings.resx
r1119 r1126 127 127 <value>Appointment Details</value> 128 128 </data> 129 <data name="ApptR outingSlip" xml:space="preserve">130 <value>Appointment R outingSlip</value>129 <data name="ApptReminderSlip" xml:space="preserve"> 130 <value>Appointment Reminder Slip</value> 131 131 </data> 132 132 <data name="Clinic" xml:space="preserve">
Note:
See TracChangeset
for help on using the changeset viewer.