Changeset 1159 for Scheduling/trunk
- Timestamp:
- May 3, 2011, 4:01:50 AM (14 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs
r1143 r1159 2003 2003 if (a.CheckInTime.Ticks > 0) 2004 2004 { 2005 MessageBox.Show("You must Un-checkin the appointment first before removing it.");2005 MessageBox.Show("You must undo the check-in first before removing the appointment."); 2006 2006 return; 2007 2007 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user
r1156 r1159 56 56 </RemoteDebugMachine> 57 57 <StartAction>Project</StartAction> 58 <StartArguments>/s=192.168.56.101 /p=9260 /a=shabiel12 /v=catdog.77</StartArguments> 58 <StartArguments> 59 </StartArguments> 59 60 <StartPage> 60 61 </StartPage> -
Scheduling/trunk/cs/bsdx0200GUISourceCode/Printing.cs
r1156 r1159 156 156 X = e.MarginBounds.X, 157 157 Y = e.PageBounds.Y, 158 Height = e.MarginBounds.Y - e.PageBounds.Y ,158 Height = e.MarginBounds.Y - e.PageBounds.Y - 50, 159 159 Width = e.MarginBounds.Width 160 160 }; … … 563 563 Rectangle headerArea = new Rectangle() 564 564 { 565 X = e.MarginBounds.X, 566 Y = e.PageBounds.Y, 567 Height = e.MarginBounds.Y - e.PageBounds.Y ,565 X = e.MarginBounds.X, 566 Y = e.PageBounds.Y, //0 567 Height = e.MarginBounds.Y - e.PageBounds.Y - 50, //100px - 50px 568 568 Width = e.MarginBounds.Width 569 569 };
Note:
See TracChangeset
for help on using the changeset viewer.