Changeset 1159 for Scheduling/trunk


Ignore:
Timestamp:
May 3, 2011, 4:01:50 AM (13 years ago)
Author:
Sam Habiel
Message:

A couple of final fixes before the v 1.5 Release.

  1. Moved the header for appointment slip and routing slip up by 25 pixels.
  2. Clarified and undo message in CGView.
Location:
Scheduling/trunk/cs/bsdx0200GUISourceCode
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs

    r1143 r1159  
    20032003                if (a.CheckInTime.Ticks > 0)
    20042004                {
    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.");
    20062006                    return;
    20072007                }
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/ClinicalScheduling.csproj.user

    r1156 r1159  
    5656    </RemoteDebugMachine>
    5757    <StartAction>Project</StartAction>
    58     <StartArguments>/s=192.168.56.101 /p=9260 /a=shabiel12 /v=catdog.77</StartArguments>
     58    <StartArguments>
     59    </StartArguments>
    5960    <StartPage>
    6061    </StartPage>
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/Printing.cs

    r1156 r1159  
    156156                X = e.MarginBounds.X,
    157157                Y = e.PageBounds.Y,
    158                 Height = e.MarginBounds.Y - e.PageBounds.Y,
     158                Height = e.MarginBounds.Y - e.PageBounds.Y - 50,
    159159                Width = e.MarginBounds.Width
    160160            };
     
    563563            Rectangle headerArea = new Rectangle()
    564564            {
    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
    568568                Width = e.MarginBounds.Width
    569569            };
Note: See TracChangeset for help on using the changeset viewer.