Ignore:
Timestamp:
May 5, 2011, 5:11:02 AM (13 years ago)
Author:
Sam Habiel
Message:

Lots of Documentation updates.
Absorption of all updates from trunk.
CGView: Changes in Appointment Menu; Handlers for these; Radiology Support
DRadExamSelect: Change in form design; auto print appointment slip implemented.

Location:
Scheduling/branches/Radiology-Support/cs/bsdx0200GUISourceCode
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/branches/Radiology-Support/cs/bsdx0200GUISourceCode

  • Scheduling/branches/Radiology-Support/cs/bsdx0200GUISourceCode/Printing.cs

    r1131 r1168  
    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            };
     
    553553        /// </summary>
    554554        /// <param name="a">Appointment Data Structure</param>
    555         /// <param name="title">String to print for title</param>
     555        /// <param name="apptOrder">Order of Appointment</param>
    556556        /// <param name="e">etc</param>
    557557        public virtual void PrintRoutingSlip(CGAppointment appt, int apptOrder, PrintPageEventArgs e)
     
    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            };
     
    697697            s = strings.ScratchArea;
    698698            g.DrawString(s, fGroupTitle, Brushes.Black, printArea, sf3);
    699 
     699           
     700            /* Per Al-Najjar, we don't want the next appointment instructions section
    700701            // move down
    701702            printArea.Y += 240;
     
    713714            s = strings.NextAppointmentInstructions;
    714715            g.DrawString(s, fGroupTitle, Brushes.Black, printArea, sf3);
     716            */
    715717
    716718            // Draw Footer
Note: See TracChangeset for help on using the changeset viewer.