Ignore:
Timestamp:
Jun 19, 2010, 12:41:06 PM (14 years ago)
Author:
Sam Habiel
Message:

Support for Routing Slip printing.
Version change from 1.1 to 1.2 in preparation for release.
Printing.cs: Addition of PrintRoutingSlip method.
CGView.cs: Handling of printing of routing slip if chosen in DCheckIn.cs
CGView.cs: New context option to re-print routing slip
DCheckIn.cs: toolTip1 to explain that routing slip will print on the default printer.

File:
1 edited

Legend:

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

    r802 r804  
    1515    public class DCheckIn : System.Windows.Forms.Form
    1616    {
    17         /// <summary>
    18         /// Required designer variable.
    19         /// </summary>
    20         private System.ComponentModel.Container components = null;
     17        private IContainer components;
    2118
    2219        public DCheckIn()
     
    8279        private string m_sPCCClinicIEN;
    8380        private string m_sPCCFormIEN;
     81        private ToolTip toolTip1;
    8482        private bool m_bPCCOutGuide;
    8583
     
    241239                cboProvider.SelectedIndex = nFind;
    242240            }
     241            //otherwise, just use the default provider table
    243242            else
    244243            {
     
    262261
    263262            //Stop code processing
     263            //TODO: Remove... not in VISTA.
    264264            this.lblStopCode.Visible = false;
    265265            this.cboStopCode.Visible = false;
     
    453453        private void InitializeComponent()
    454454        {
     455            this.components = new System.ComponentModel.Container();
     456            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DCheckIn));
    455457            this.pnlPageBottom = new System.Windows.Forms.Panel();
    456458            this.cmdCancel = new System.Windows.Forms.Button();
     
    475477            this.cboPCCPlusForm = new System.Windows.Forms.ComboBox();
    476478            this.label5 = new System.Windows.Forms.Label();
     479            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
    477480            this.pnlPageBottom.SuspendLayout();
    478481            this.pnlDescription.SuspendLayout();
     
    537540            this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(514, 53);
    538541            this.lblDescriptionResourceGroup.TabIndex = 0;
    539             this.lblDescriptionResourceGroup.Text = "Use this panel to check in an appointment. A PCC visit will automatically be crea" +
    540                 "ted for this patient at the check in date and time if the clinic is set up to cr" +
    541                 "eate a visit at checkin.  A patient may only be checked-in once.";
     542            this.lblDescriptionResourceGroup.Text = resources.GetString("lblDescriptionResourceGroup.Text");
    542543            //
    543544            // label1
     
    562563            // lblAlready
    563564            //
    564             this.lblAlready.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     565            this.lblAlready.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    565566            this.lblAlready.ForeColor = System.Drawing.Color.Green;
    566567            this.lblAlready.Location = new System.Drawing.Point(288, 40);
     
    625626            this.chkRoutingSlip.TabIndex = 14;
    626627            this.chkRoutingSlip.Text = "Print Routing Slip";
     628            this.toolTip1.SetToolTip(this.chkRoutingSlip, "Prints routing slip to the Windows Default Printer");
    627629            //
    628630            // grpPCCPlus
Note: See TracChangeset for help on using the changeset viewer.