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/DApptSearch.cs

    r1123 r1168  
    55using System.Data;
    66using System.Linq;
    7 //using System.Data.OleDb;
    87
    98namespace IndianHealthService.ClinicalScheduling
     
    114113                {
    115114
    116             this.Text = "Searching for Appointments in: " + string.Join(" | ", alResources.Cast<string>());
     115            this.Text = "Searching for available slots in: " + string.Join(" | ", alResources.Cast<string>());
    117116           
    118117            this.m_DocManager = docManager;
     
    275274                {
    276275            this.panel1 = new System.Windows.Forms.Panel();
     276            this.lblMessage = new System.Windows.Forms.Label();
    277277            this.cmdSearch = new System.Windows.Forms.Button();
    278278            this.cmdCancel = new System.Windows.Forms.Button();
     
    313313            this.colSlots = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    314314            this.colAccessType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    315             this.lblMessage = new System.Windows.Forms.Label();
    316315            this.panel1.SuspendLayout();
    317316            this.pnlDescription.SuspendLayout();
     
    335334            this.panel1.TabIndex = 4;
    336335            //
     336            // lblMessage
     337            //
     338            this.lblMessage.AutoSize = true;
     339            this.lblMessage.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     340            this.lblMessage.ForeColor = System.Drawing.Color.Red;
     341            this.lblMessage.Location = new System.Drawing.Point(337, 16);
     342            this.lblMessage.Name = "lblMessage";
     343            this.lblMessage.Size = new System.Drawing.Size(0, 16);
     344            this.lblMessage.TabIndex = 3;
     345            //
    337346            // cmdSearch
    338347            //
     
    390399            this.lblDescription.Size = new System.Drawing.Size(917, 45);
    391400            this.lblDescription.TabIndex = 1;
    392             this.lblDescription.Text = "Search for available appointment times using this panel.  You may narrow your sea" +
    393                 "rch by selecting an access type or by selecting specific days of the week or tim" +
    394                 "es of day.";
     401            this.lblDescription.Text = "Search for available slots times using this panel.  You may narrow your search by" +
     402                " selecting an access type or by selecting specific days of the week or times of " +
     403                "day.";
    395404            //
    396405            // groupBox1
     
    676685            this.colAccessType.Text = "Access Type";
    677686            this.colAccessType.Width = 101;
    678             //
    679             // lblMessage
    680             //
    681             this.lblMessage.AutoSize = true;
    682             this.lblMessage.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    683             this.lblMessage.ForeColor = System.Drawing.Color.Red;
    684             this.lblMessage.Location = new System.Drawing.Point(337, 16);
    685             this.lblMessage.Name = "lblMessage";
    686             this.lblMessage.Size = new System.Drawing.Size(0, 16);
    687             this.lblMessage.TabIndex = 3;
    688687            //
    689688            // DApptSearch
     
    899898
    900899            if (items.Length > 0) lstResults.Items.AddRange(items); // add new data
    901             else this.lblMessage.Text = "No available Appointment Slots Found!";
     900            else this.lblMessage.Text = "No available slots found!";
    902901
    903902            lstResults.EndUpdate(); // ok done adding items, draw now.
     
    944943            {
    945944                this.DialogResult = DialogResult.None;
    946                 lblMessage.Text = "No Appointment Slot selected!";
     945                lblMessage.Text = "No slot selected!";
    947946                return;
    948947            }
    949948
    950             long availabilityKey = long.Parse(lstResults.SelectedItems[0].SubItems[0].Text);
     949            int availabilityKey = Int32.Parse(lstResults.SelectedItems[0].SubItems[0].Text);
    951950            _selectedAvailability = (from av in lstResultantAvailabilities
    952951                                     where av.AvailabilityType == availabilityKey
Note: See TracChangeset for help on using the changeset viewer.