Changeset 1075


Ignore:
Timestamp:
Jan 23, 2011, 8:00:56 AM (13 years ago)
Author:
Sam Habiel
Message:

CalendarGrid: Handling for mouse scroll wheel added.
CGAppointments: Now supports Deep Cloning with Clone().
Updated Exes

Location:
Scheduling/trunk/cs/bsdx0200GUISourceCode
Files:
8 edited

Legend:

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

    r1073 r1075  
    5757        }
    5858
    59         //smh test
    60         //one problem: Hashtable is a shallow copy.
    61         //so it shouldn't work. But let's see.
     59 
    6260        public object Clone()
    6361        {
    64             CGAppointments appts = new CGAppointments();
    65             appts.apptList = (Hashtable)apptList.Clone();
    66             return appts;
     62            CGAppointments newappts = new CGAppointments();
     63            //appts.apptList = (Hashtable)apptList.Clone();
     64            foreach (DictionaryEntry d in this.apptList)
     65            {
     66                newappts.apptList.Add(d.Key, d.Value);
     67            }
     68           
     69            return newappts;
    6770        }
    6871    }
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs

    r1073 r1075  
    233233            this.lblResource = new System.Windows.Forms.Label();
    234234            this.panelCenter = new System.Windows.Forms.Panel();
    235             this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid();
    236235            this.ctxCalendarGrid = new System.Windows.Forms.ContextMenu();
    237236            this.ctxCalGridAdd = new System.Windows.Forms.MenuItem();
     
    251250            this.splitter2 = new System.Windows.Forms.Splitter();
    252251            this.printRoutingSlip = new System.Drawing.Printing.PrintDocument();
     252            this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid();
    253253            this.panelRight.SuspendLayout();
    254254            this.panelClip.SuspendLayout();
     
    617617            this.tvSchedules.Location = new System.Drawing.Point(0, 0);
    618618            this.tvSchedules.Name = "tvSchedules";
    619             this.tvSchedules.Size = new System.Drawing.Size(128, 395);
     619            this.tvSchedules.Size = new System.Drawing.Size(128, 332);
    620620            this.tvSchedules.Sorted = true;
    621621            this.tvSchedules.TabIndex = 1;
     
    664664            this.panelRight.Location = new System.Drawing.Point(941, 0);
    665665            this.panelRight.Name = "panelRight";
    666             this.panelRight.Size = new System.Drawing.Size(128, 395);
     666            this.panelRight.Size = new System.Drawing.Size(128, 332);
    667667            this.panelRight.TabIndex = 3;
    668668            this.panelRight.Visible = false;
     
    762762            this.panelCenter.Location = new System.Drawing.Point(136, 24);
    763763            this.panelCenter.Name = "panelCenter";
    764             this.panelCenter.Size = new System.Drawing.Size(802, 347);
     764            this.panelCenter.Size = new System.Drawing.Size(802, 284);
    765765            this.panelCenter.TabIndex = 7;
     766            //
     767            // ctxCalendarGrid
     768            //
     769            this.ctxCalendarGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
     770            this.ctxCalGridAdd,
     771            this.ctxCalGridEdit,
     772            this.ctxCalGridDelete,
     773            this.ctxCalGridCheckIn,
     774            this.menuItem2,
     775            this.ctxCalGridNoShow,
     776            this.ctxCalGridNoShowUndo,
     777            this.menuItem9,
     778            this.ctxCalGridWalkin,
     779            this.menuItem10,
     780            this.ctxCalGridReprintRoutingSlip});
     781            this.ctxCalendarGrid.Popup += new System.EventHandler(this.ctxCalendarGrid_Popup);
     782            //
     783            // ctxCalGridAdd
     784            //
     785            this.ctxCalGridAdd.Index = 0;
     786            this.ctxCalGridAdd.Text = "Add Appointment";
     787            this.ctxCalGridAdd.Click += new System.EventHandler(this.ctxCalGridAdd_Click);
     788            //
     789            // ctxCalGridEdit
     790            //
     791            this.ctxCalGridEdit.Index = 1;
     792            this.ctxCalGridEdit.Text = "Edit Appointment";
     793            this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click);
     794            //
     795            // ctxCalGridDelete
     796            //
     797            this.ctxCalGridDelete.Index = 2;
     798            this.ctxCalGridDelete.Text = "Cancel Appointment";
     799            this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click);
     800            //
     801            // ctxCalGridCheckIn
     802            //
     803            this.ctxCalGridCheckIn.Index = 3;
     804            this.ctxCalGridCheckIn.Text = "Check In Patient";
     805            this.ctxCalGridCheckIn.Click += new System.EventHandler(this.ctxCalGridCheckIn_Click);
     806            //
     807            // menuItem2
     808            //
     809            this.menuItem2.Index = 4;
     810            this.menuItem2.Text = "-";
     811            //
     812            // ctxCalGridNoShow
     813            //
     814            this.ctxCalGridNoShow.Index = 5;
     815            this.ctxCalGridNoShow.Text = "Mark as No Show";
     816            this.ctxCalGridNoShow.Click += new System.EventHandler(this.ctxCalGridNoShow_Click);
     817            //
     818            // ctxCalGridNoShowUndo
     819            //
     820            this.ctxCalGridNoShowUndo.Index = 6;
     821            this.ctxCalGridNoShowUndo.Text = "Undo NoShow";
     822            this.ctxCalGridNoShowUndo.Click += new System.EventHandler(this.ctxCalGridNoShowUndo_Click);
     823            //
     824            // menuItem9
     825            //
     826            this.menuItem9.Index = 7;
     827            this.menuItem9.Text = "-";
     828            //
     829            // ctxCalGridWalkin
     830            //
     831            this.ctxCalGridWalkin.Index = 8;
     832            this.ctxCalGridWalkin.Text = "Create Wal&k-In Appointment";
     833            this.ctxCalGridWalkin.Click += new System.EventHandler(this.ctxCalGridWalkin_Click);
     834            //
     835            // menuItem10
     836            //
     837            this.menuItem10.Index = 9;
     838            this.menuItem10.Text = "-";
     839            //
     840            // ctxCalGridReprintRoutingSlip
     841            //
     842            this.ctxCalGridReprintRoutingSlip.Index = 10;
     843            this.ctxCalGridReprintRoutingSlip.Text = "&Reprint Routing Slip";
     844            this.ctxCalGridReprintRoutingSlip.Click += new System.EventHandler(this.ctxCalGridReprintRoutingSlip_Click);
     845            //
     846            // panelBottom
     847            //
     848            this.panelBottom.Controls.Add(this.statusBar1);
     849            this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     850            this.panelBottom.Location = new System.Drawing.Point(136, 308);
     851            this.panelBottom.Name = "panelBottom";
     852            this.panelBottom.Size = new System.Drawing.Size(802, 24);
     853            this.panelBottom.TabIndex = 8;
     854            //
     855            // statusBar1
     856            //
     857            this.statusBar1.Dock = System.Windows.Forms.DockStyle.Fill;
     858            this.statusBar1.Location = new System.Drawing.Point(0, 0);
     859            this.statusBar1.Name = "statusBar1";
     860            this.statusBar1.Size = new System.Drawing.Size(802, 24);
     861            this.statusBar1.SizingGrip = false;
     862            this.statusBar1.TabIndex = 0;
     863            //
     864            // splitter1
     865            //
     866            this.splitter1.Location = new System.Drawing.Point(128, 24);
     867            this.splitter1.Name = "splitter1";
     868            this.splitter1.Size = new System.Drawing.Size(8, 308);
     869            this.splitter1.TabIndex = 9;
     870            this.splitter1.TabStop = false;
     871            //
     872            // splitter2
     873            //
     874            this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
     875            this.splitter2.Location = new System.Drawing.Point(938, 24);
     876            this.splitter2.Name = "splitter2";
     877            this.splitter2.Size = new System.Drawing.Size(3, 308);
     878            this.splitter2.TabIndex = 10;
     879            this.splitter2.TabStop = false;
     880            //
     881            // printRoutingSlip
     882            //
     883            this.printRoutingSlip.DocumentName = "Routing Slip";
     884            this.printRoutingSlip.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printRoutingSlip_PrintPage);
    766885            //
    767886            // calendarGrid1
     
    784903            this.calendarGrid1.Resources = ((System.Collections.ArrayList)(resources.GetObject("calendarGrid1.Resources")));
    785904            this.calendarGrid1.SelectedAppointment = 0;
    786             this.calendarGrid1.Size = new System.Drawing.Size(802, 347);
     905            this.calendarGrid1.Size = new System.Drawing.Size(802, 284);
    787906            this.calendarGrid1.StartDate = new System.DateTime(2003, 1, 27, 0, 0, 0, 0);
    788907            this.calendarGrid1.TabIndex = 0;
     
    794913            this.calendarGrid1.MouseEnter += new System.EventHandler(this.calendarGrid1_MouseEnter);
    795914            //
    796             // ctxCalendarGrid
    797             //
    798             this.ctxCalendarGrid.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
    799             this.ctxCalGridAdd,
    800             this.ctxCalGridEdit,
    801             this.ctxCalGridDelete,
    802             this.ctxCalGridCheckIn,
    803             this.menuItem2,
    804             this.ctxCalGridNoShow,
    805             this.ctxCalGridNoShowUndo,
    806             this.menuItem9,
    807             this.ctxCalGridWalkin,
    808             this.menuItem10,
    809             this.ctxCalGridReprintRoutingSlip});
    810             this.ctxCalendarGrid.Popup += new System.EventHandler(this.ctxCalendarGrid_Popup);
    811             //
    812             // ctxCalGridAdd
    813             //
    814             this.ctxCalGridAdd.Index = 0;
    815             this.ctxCalGridAdd.Text = "Add Appointment";
    816             this.ctxCalGridAdd.Click += new System.EventHandler(this.ctxCalGridAdd_Click);
    817             //
    818             // ctxCalGridEdit
    819             //
    820             this.ctxCalGridEdit.Index = 1;
    821             this.ctxCalGridEdit.Text = "Edit Appointment";
    822             this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click);
    823             //
    824             // ctxCalGridDelete
    825             //
    826             this.ctxCalGridDelete.Index = 2;
    827             this.ctxCalGridDelete.Text = "Cancel Appointment";
    828             this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click);
    829             //
    830             // ctxCalGridCheckIn
    831             //
    832             this.ctxCalGridCheckIn.Index = 3;
    833             this.ctxCalGridCheckIn.Text = "Check In Patient";
    834             this.ctxCalGridCheckIn.Click += new System.EventHandler(this.ctxCalGridCheckIn_Click);
    835             //
    836             // menuItem2
    837             //
    838             this.menuItem2.Index = 4;
    839             this.menuItem2.Text = "-";
    840             //
    841             // ctxCalGridNoShow
    842             //
    843             this.ctxCalGridNoShow.Index = 5;
    844             this.ctxCalGridNoShow.Text = "Mark as No Show";
    845             this.ctxCalGridNoShow.Click += new System.EventHandler(this.ctxCalGridNoShow_Click);
    846             //
    847             // ctxCalGridNoShowUndo
    848             //
    849             this.ctxCalGridNoShowUndo.Index = 6;
    850             this.ctxCalGridNoShowUndo.Text = "Undo NoShow";
    851             this.ctxCalGridNoShowUndo.Click += new System.EventHandler(this.ctxCalGridNoShowUndo_Click);
    852             //
    853             // menuItem9
    854             //
    855             this.menuItem9.Index = 7;
    856             this.menuItem9.Text = "-";
    857             //
    858             // ctxCalGridWalkin
    859             //
    860             this.ctxCalGridWalkin.Index = 8;
    861             this.ctxCalGridWalkin.Text = "Create Wal&k-In Appointment";
    862             this.ctxCalGridWalkin.Click += new System.EventHandler(this.ctxCalGridWalkin_Click);
    863             //
    864             // menuItem10
    865             //
    866             this.menuItem10.Index = 9;
    867             this.menuItem10.Text = "-";
    868             //
    869             // ctxCalGridReprintRoutingSlip
    870             //
    871             this.ctxCalGridReprintRoutingSlip.Index = 10;
    872             this.ctxCalGridReprintRoutingSlip.Text = "&Reprint Routing Slip";
    873             this.ctxCalGridReprintRoutingSlip.Click += new System.EventHandler(this.ctxCalGridReprintRoutingSlip_Click);
    874             //
    875             // panelBottom
    876             //
    877             this.panelBottom.Controls.Add(this.statusBar1);
    878             this.panelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
    879             this.panelBottom.Location = new System.Drawing.Point(136, 371);
    880             this.panelBottom.Name = "panelBottom";
    881             this.panelBottom.Size = new System.Drawing.Size(802, 24);
    882             this.panelBottom.TabIndex = 8;
    883             //
    884             // statusBar1
    885             //
    886             this.statusBar1.Dock = System.Windows.Forms.DockStyle.Fill;
    887             this.statusBar1.Location = new System.Drawing.Point(0, 0);
    888             this.statusBar1.Name = "statusBar1";
    889             this.statusBar1.Size = new System.Drawing.Size(802, 24);
    890             this.statusBar1.SizingGrip = false;
    891             this.statusBar1.TabIndex = 0;
    892             //
    893             // splitter1
    894             //
    895             this.splitter1.Location = new System.Drawing.Point(128, 24);
    896             this.splitter1.Name = "splitter1";
    897             this.splitter1.Size = new System.Drawing.Size(8, 371);
    898             this.splitter1.TabIndex = 9;
    899             this.splitter1.TabStop = false;
    900             //
    901             // splitter2
    902             //
    903             this.splitter2.Dock = System.Windows.Forms.DockStyle.Right;
    904             this.splitter2.Location = new System.Drawing.Point(938, 24);
    905             this.splitter2.Name = "splitter2";
    906             this.splitter2.Size = new System.Drawing.Size(3, 371);
    907             this.splitter2.TabIndex = 10;
    908             this.splitter2.TabStop = false;
    909             //
    910             // printRoutingSlip
    911             //
    912             this.printRoutingSlip.DocumentName = "Routing Slip";
    913             this.printRoutingSlip.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printRoutingSlip_PrintPage);
    914             //
    915915            // CGView
    916916            //
    917917            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    918             this.ClientSize = new System.Drawing.Size(1069, 395);
     918            this.ClientSize = new System.Drawing.Size(1069, 332);
    919919            this.Controls.Add(this.panelCenter);
    920920            this.Controls.Add(this.panelBottom);
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CalendarGrid.cs

    r1073 r1075  
    5151        private Timer m_Timer;                  // Timeer used in Drag and Drop Operations
    5252        private ToolTip m_toolTip;
    53         private const int WM_HSCROLL = 0x114;   // Horizontal Scrolling Windows Message
    54         private const int WM_VSCROLL = 0x115;   // Vertical Scrolling Windows Message
     53        private const int WM_HSCROLL = 0x114;       // Horizontal Scrolling Windows Message
     54        private const int WM_VSCROLL = 0x115;       // Vertical Scrolling Windows Message
     55        private const int WM_MOUSEWHEEL = 0x20a;    // Windows Mouse Scrolling Message
    5556
    5657        public delegate void CGAppointmentChangedHandler(object sender, CGAppointmentChangedArgs e);
     
    11861187        /// Otherwise, when scrolling, it gets garbled.
    11871188        /// </summary>
    1188         /// <param name="msg">Handles two messages:
     1189        /// <param name="msg">Handles three messages:
    11891190        /// WM_VSCROLL (0x115 - Vertical Scrolling)
    11901191        /// WM_HSCROLL (0x114 - Horizontal Scrolling)
     1192        /// WM_MOUSEWHEEL (0x20a - Mouse Wheel Movement)
    11911193        /// </param>
    11921194        protected override void WndProc(ref Message msg)
     
    11941196            try
    11951197            {
    1196                 if (msg.Msg == WM_VSCROLL)
     1198                if (msg.Msg == WM_VSCROLL || msg.Msg == WM_MOUSEWHEEL)
    11971199                {
    11981200                    this.m_bScroll = true;
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DManagement.cs

    r899 r1075  
    692692            this.tpResourceGroups.Location = new System.Drawing.Point(4, 22);
    693693            this.tpResourceGroups.Name = "tpResourceGroups";
    694             this.tpResourceGroups.Size = new System.Drawing.Size(579, 362);
     694            this.tpResourceGroups.Size = new System.Drawing.Size(696, 428);
    695695            this.tpResourceGroups.TabIndex = 4;
    696696            this.tpResourceGroups.Text = "Resource Groups";
     
    706706            this.grdResourceGroup.Name = "grdResourceGroup";
    707707            this.grdResourceGroup.ReadOnly = true;
    708             this.grdResourceGroup.Size = new System.Drawing.Size(579, 250);
     708            this.grdResourceGroup.Size = new System.Drawing.Size(696, 316);
    709709            this.grdResourceGroup.TabIndex = 4;
    710710            this.grdResourceGroup.CurrentCellChanged += new System.EventHandler(this.grdResourceGroup_CurrentCellChanged);
     
    715715            this.pnlDescriptionResourceGroup.Controls.Add(this.grpDescriptionResourceGroup);
    716716            this.pnlDescriptionResourceGroup.Dock = System.Windows.Forms.DockStyle.Bottom;
    717             this.pnlDescriptionResourceGroup.Location = new System.Drawing.Point(0, 250);
     717            this.pnlDescriptionResourceGroup.Location = new System.Drawing.Point(0, 316);
    718718            this.pnlDescriptionResourceGroup.Name = "pnlDescriptionResourceGroup";
    719             this.pnlDescriptionResourceGroup.Size = new System.Drawing.Size(579, 72);
     719            this.pnlDescriptionResourceGroup.Size = new System.Drawing.Size(696, 72);
    720720            this.pnlDescriptionResourceGroup.TabIndex = 3;
    721721            //
     
    726726            this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0);
    727727            this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup";
    728             this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(579, 72);
     728            this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(696, 72);
    729729            this.grpDescriptionResourceGroup.TabIndex = 0;
    730730            this.grpDescriptionResourceGroup.TabStop = false;
     
    736736            this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16);
    737737            this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup";
    738             this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(573, 53);
     738            this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(690, 53);
    739739            this.lblDescriptionResourceGroup.TabIndex = 0;
    740740            this.lblDescriptionResourceGroup.Text = resources.GetString("lblDescriptionResourceGroup.Text");
     
    746746            this.pnlAddEditResourceGroups.Controls.Add(this.cmdAddResourceGroup);
    747747            this.pnlAddEditResourceGroups.Dock = System.Windows.Forms.DockStyle.Bottom;
    748             this.pnlAddEditResourceGroups.Location = new System.Drawing.Point(0, 322);
     748            this.pnlAddEditResourceGroups.Location = new System.Drawing.Point(0, 388);
    749749            this.pnlAddEditResourceGroups.Name = "pnlAddEditResourceGroups";
    750             this.pnlAddEditResourceGroups.Size = new System.Drawing.Size(579, 40);
     750            this.pnlAddEditResourceGroups.Size = new System.Drawing.Size(696, 40);
    751751            this.pnlAddEditResourceGroups.TabIndex = 2;
    752752            //
     
    787787            this.tpAccessTypes.Location = new System.Drawing.Point(4, 22);
    788788            this.tpAccessTypes.Name = "tpAccessTypes";
    789             this.tpAccessTypes.Size = new System.Drawing.Size(579, 362);
     789            this.tpAccessTypes.Size = new System.Drawing.Size(696, 428);
    790790            this.tpAccessTypes.TabIndex = 2;
    791791            this.tpAccessTypes.Text = "Access Types";
     
    800800            this.grdAccessTypes.ReadOnly = true;
    801801            this.grdAccessTypes.RowHeadersVisible = false;
    802             this.grdAccessTypes.Size = new System.Drawing.Size(579, 250);
     802            this.grdAccessTypes.Size = new System.Drawing.Size(696, 316);
    803803            this.grdAccessTypes.TabIndex = 3;
    804804            this.grdAccessTypes.CurrentCellChanged += new System.EventHandler(this.grdAccessTypes_CurrentCellChanged);
     
    808808            this.pnlDescriptionAT.Controls.Add(this.grpDescriptionAT);
    809809            this.pnlDescriptionAT.Dock = System.Windows.Forms.DockStyle.Bottom;
    810             this.pnlDescriptionAT.Location = new System.Drawing.Point(0, 250);
     810            this.pnlDescriptionAT.Location = new System.Drawing.Point(0, 316);
    811811            this.pnlDescriptionAT.Name = "pnlDescriptionAT";
    812             this.pnlDescriptionAT.Size = new System.Drawing.Size(579, 72);
     812            this.pnlDescriptionAT.Size = new System.Drawing.Size(696, 72);
    813813            this.pnlDescriptionAT.TabIndex = 2;
    814814            //
     
    819819            this.grpDescriptionAT.Location = new System.Drawing.Point(0, 0);
    820820            this.grpDescriptionAT.Name = "grpDescriptionAT";
    821             this.grpDescriptionAT.Size = new System.Drawing.Size(579, 72);
     821            this.grpDescriptionAT.Size = new System.Drawing.Size(696, 72);
    822822            this.grpDescriptionAT.TabIndex = 0;
    823823            this.grpDescriptionAT.TabStop = false;
     
    829829            this.label1.Location = new System.Drawing.Point(3, 16);
    830830            this.label1.Name = "label1";
    831             this.label1.Size = new System.Drawing.Size(573, 53);
     831            this.label1.Size = new System.Drawing.Size(690, 53);
    832832            this.label1.TabIndex = 1;
    833833            this.label1.Text = " Use the Access Types panel to define the kinds of access available for schedulin" +
     
    840840            this.pnlAddEditAT.Controls.Add(this.cmdAddAT);
    841841            this.pnlAddEditAT.Dock = System.Windows.Forms.DockStyle.Bottom;
    842             this.pnlAddEditAT.Location = new System.Drawing.Point(0, 322);
     842            this.pnlAddEditAT.Location = new System.Drawing.Point(0, 388);
    843843            this.pnlAddEditAT.Name = "pnlAddEditAT";
    844             this.pnlAddEditAT.Size = new System.Drawing.Size(579, 40);
     844            this.pnlAddEditAT.Size = new System.Drawing.Size(696, 40);
    845845            this.pnlAddEditAT.TabIndex = 1;
    846846            //
     
    870870            this.tpAccessGroups.Location = new System.Drawing.Point(4, 22);
    871871            this.tpAccessGroups.Name = "tpAccessGroups";
    872             this.tpAccessGroups.Size = new System.Drawing.Size(579, 362);
     872            this.tpAccessGroups.Size = new System.Drawing.Size(696, 428);
    873873            this.tpAccessGroups.TabIndex = 1;
    874874            this.tpAccessGroups.Text = "Access Groups";
     
    884884            this.grdAccessGroups.Name = "grdAccessGroups";
    885885            this.grdAccessGroups.ReadOnly = true;
    886             this.grdAccessGroups.Size = new System.Drawing.Size(579, 250);
     886            this.grdAccessGroups.Size = new System.Drawing.Size(696, 316);
    887887            this.grdAccessGroups.TabIndex = 5;
    888888            this.grdAccessGroups.CurrentCellChanged += new System.EventHandler(this.grdAccessGroups_CurrentCellChanged);
     
    893893            this.pnlDescriptionAccessGroups.Controls.Add(this.grpDescriptionAccessGroups);
    894894            this.pnlDescriptionAccessGroups.Dock = System.Windows.Forms.DockStyle.Bottom;
    895             this.pnlDescriptionAccessGroups.Location = new System.Drawing.Point(0, 250);
     895            this.pnlDescriptionAccessGroups.Location = new System.Drawing.Point(0, 316);
    896896            this.pnlDescriptionAccessGroups.Name = "pnlDescriptionAccessGroups";
    897             this.pnlDescriptionAccessGroups.Size = new System.Drawing.Size(579, 72);
     897            this.pnlDescriptionAccessGroups.Size = new System.Drawing.Size(696, 72);
    898898            this.pnlDescriptionAccessGroups.TabIndex = 4;
    899899            //
     
    904904            this.grpDescriptionAccessGroups.Location = new System.Drawing.Point(0, 0);
    905905            this.grpDescriptionAccessGroups.Name = "grpDescriptionAccessGroups";
    906             this.grpDescriptionAccessGroups.Size = new System.Drawing.Size(579, 72);
     906            this.grpDescriptionAccessGroups.Size = new System.Drawing.Size(696, 72);
    907907            this.grpDescriptionAccessGroups.TabIndex = 0;
    908908            this.grpDescriptionAccessGroups.TabStop = false;
     
    914914            this.lblDescriptionAccessGroups.Location = new System.Drawing.Point(3, 16);
    915915            this.lblDescriptionAccessGroups.Name = "lblDescriptionAccessGroups";
    916             this.lblDescriptionAccessGroups.Size = new System.Drawing.Size(573, 53);
     916            this.lblDescriptionAccessGroups.Size = new System.Drawing.Size(690, 53);
    917917            this.lblDescriptionAccessGroups.TabIndex = 0;
    918918            this.lblDescriptionAccessGroups.Text = resources.GetString("lblDescriptionAccessGroups.Text");
     
    924924            this.pnlAddEditAccessGroup.Controls.Add(this.cmdAddAccessGroup);
    925925            this.pnlAddEditAccessGroup.Dock = System.Windows.Forms.DockStyle.Bottom;
    926             this.pnlAddEditAccessGroup.Location = new System.Drawing.Point(0, 322);
     926            this.pnlAddEditAccessGroup.Location = new System.Drawing.Point(0, 388);
    927927            this.pnlAddEditAccessGroup.Name = "pnlAddEditAccessGroup";
    928             this.pnlAddEditAccessGroup.Size = new System.Drawing.Size(579, 40);
     928            this.pnlAddEditAccessGroup.Size = new System.Drawing.Size(696, 40);
    929929            this.pnlAddEditAccessGroup.TabIndex = 3;
    930930            //
     
    972972            this.tpTransferAppts.Location = new System.Drawing.Point(4, 22);
    973973            this.tpTransferAppts.Name = "tpTransferAppts";
    974             this.tpTransferAppts.Size = new System.Drawing.Size(579, 362);
     974            this.tpTransferAppts.Size = new System.Drawing.Size(696, 428);
    975975            this.tpTransferAppts.TabIndex = 5;
    976976            this.tpTransferAppts.Text = "Copy Appointments";
     
    10421042            this.pnlDescriptionXfer.Controls.Add(this.grpDescriptionXfer);
    10431043            this.pnlDescriptionXfer.Dock = System.Windows.Forms.DockStyle.Bottom;
    1044             this.pnlDescriptionXfer.Location = new System.Drawing.Point(0, 250);
     1044            this.pnlDescriptionXfer.Location = new System.Drawing.Point(0, 316);
    10451045            this.pnlDescriptionXfer.Name = "pnlDescriptionXfer";
    1046             this.pnlDescriptionXfer.Size = new System.Drawing.Size(579, 72);
     1046            this.pnlDescriptionXfer.Size = new System.Drawing.Size(696, 72);
    10471047            this.pnlDescriptionXfer.TabIndex = 2;
    10481048            //
     
    10531053            this.grpDescriptionXfer.Location = new System.Drawing.Point(0, 0);
    10541054            this.grpDescriptionXfer.Name = "grpDescriptionXfer";
    1055             this.grpDescriptionXfer.Size = new System.Drawing.Size(579, 72);
     1055            this.grpDescriptionXfer.Size = new System.Drawing.Size(696, 72);
    10561056            this.grpDescriptionXfer.TabIndex = 0;
    10571057            this.grpDescriptionXfer.TabStop = false;
     
    10631063            this.lblDescriptionXfer.Location = new System.Drawing.Point(3, 16);
    10641064            this.lblDescriptionXfer.Name = "lblDescriptionXfer";
    1065             this.lblDescriptionXfer.Size = new System.Drawing.Size(573, 53);
     1065            this.lblDescriptionXfer.Size = new System.Drawing.Size(690, 53);
    10661066            this.lblDescriptionXfer.TabIndex = 0;
    10671067            this.lblDescriptionXfer.Text = resources.GetString("lblDescriptionXfer.Text");
     
    10711071            this.pnlCmdXfer.Controls.Add(this.cmdCopyAppts);
    10721072            this.pnlCmdXfer.Dock = System.Windows.Forms.DockStyle.Bottom;
    1073             this.pnlCmdXfer.Location = new System.Drawing.Point(0, 322);
     1073            this.pnlCmdXfer.Location = new System.Drawing.Point(0, 388);
    10741074            this.pnlCmdXfer.Name = "pnlCmdXfer";
    1075             this.pnlCmdXfer.Size = new System.Drawing.Size(579, 40);
     1075            this.pnlCmdXfer.Size = new System.Drawing.Size(696, 40);
    10761076            this.pnlCmdXfer.TabIndex = 1;
    10771077            //
     
    10921092            this.tpWorkStations.Location = new System.Drawing.Point(4, 22);
    10931093            this.tpWorkStations.Name = "tpWorkStations";
    1094             this.tpWorkStations.Size = new System.Drawing.Size(579, 362);
     1094            this.tpWorkStations.Size = new System.Drawing.Size(696, 428);
    10951095            this.tpWorkStations.TabIndex = 6;
    10961096            this.tpWorkStations.Text = "WorkStations";
     
    11061106            this.grdWorkStations.Name = "grdWorkStations";
    11071107            this.grdWorkStations.ReadOnly = true;
    1108             this.grdWorkStations.Size = new System.Drawing.Size(579, 250);
     1108            this.grdWorkStations.Size = new System.Drawing.Size(696, 316);
    11091109            this.grdWorkStations.TabIndex = 6;
    11101110            //
     
    11131113            this.pnlWorkstations.Controls.Add(this.groupBox1);
    11141114            this.pnlWorkstations.Dock = System.Windows.Forms.DockStyle.Bottom;
    1115             this.pnlWorkstations.Location = new System.Drawing.Point(0, 250);
     1115            this.pnlWorkstations.Location = new System.Drawing.Point(0, 316);
    11161116            this.pnlWorkstations.Name = "pnlWorkstations";
    1117             this.pnlWorkstations.Size = new System.Drawing.Size(579, 72);
     1117            this.pnlWorkstations.Size = new System.Drawing.Size(696, 72);
    11181118            this.pnlWorkstations.TabIndex = 5;
    11191119            //
     
    11241124            this.groupBox1.Location = new System.Drawing.Point(0, 0);
    11251125            this.groupBox1.Name = "groupBox1";
    1126             this.groupBox1.Size = new System.Drawing.Size(579, 72);
     1126            this.groupBox1.Size = new System.Drawing.Size(696, 72);
    11271127            this.groupBox1.TabIndex = 0;
    11281128            this.groupBox1.TabStop = false;
     
    11341134            this.lblWorkstations.Location = new System.Drawing.Point(3, 16);
    11351135            this.lblWorkstations.Name = "lblWorkstations";
    1136             this.lblWorkstations.Size = new System.Drawing.Size(573, 53);
     1136            this.lblWorkstations.Size = new System.Drawing.Size(690, 53);
    11371137            this.lblWorkstations.TabIndex = 0;
    11381138            this.lblWorkstations.Text = resources.GetString("lblWorkstations.Text");
     
    11451145            this.panel1.Controls.Add(this.cmdWorkStationsRefresh);
    11461146            this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
    1147             this.panel1.Location = new System.Drawing.Point(0, 322);
     1147            this.panel1.Location = new System.Drawing.Point(0, 388);
    11481148            this.panel1.Name = "panel1";
    1149             this.panel1.Size = new System.Drawing.Size(579, 40);
     1149            this.panel1.Size = new System.Drawing.Size(696, 40);
    11501150            this.panel1.TabIndex = 4;
    11511151            //
     
    11941194            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
    11951195            this.Text = "Scheduling Management";
     1196            this.Closing += new System.ComponentModel.CancelEventHandler(this.DManagement_Closing);
    11961197            this.Load += new System.EventHandler(this.DManagement_Load);
    1197             this.Closing += new System.ComponentModel.CancelEventHandler(this.DManagement_Closing);
    11981198            this.pnlPageBottom.ResumeLayout(false);
    11991199            this.tabMain.ResumeLayout(false);
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/DManagement.resx

    r627 r1075  
    113113  </resheader>
    114114  <resheader name="reader">
    115     <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
     115    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    116116  </resheader>
    117117  <resheader name="writer">
    118     <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
     118    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
    119119  </resheader>
    120120  <data name="lblDescription.Text" xml:space="preserve">
Note: See TracChangeset for help on using the changeset viewer.