Changeset 1075 for Scheduling/trunk/cs
- Timestamp:
- Jan 23, 2011, 8:00:56 AM (14 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGAppointments.cs
r1073 r1075 57 57 } 58 58 59 //smh test 60 //one problem: Hashtable is a shallow copy. 61 //so it shouldn't work. But let's see. 59 62 60 public object Clone() 63 61 { 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; 67 70 } 68 71 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs
r1073 r1075 233 233 this.lblResource = new System.Windows.Forms.Label(); 234 234 this.panelCenter = new System.Windows.Forms.Panel(); 235 this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid();236 235 this.ctxCalendarGrid = new System.Windows.Forms.ContextMenu(); 237 236 this.ctxCalGridAdd = new System.Windows.Forms.MenuItem(); … … 251 250 this.splitter2 = new System.Windows.Forms.Splitter(); 252 251 this.printRoutingSlip = new System.Drawing.Printing.PrintDocument(); 252 this.calendarGrid1 = new IndianHealthService.ClinicalScheduling.CalendarGrid(); 253 253 this.panelRight.SuspendLayout(); 254 254 this.panelClip.SuspendLayout(); … … 617 617 this.tvSchedules.Location = new System.Drawing.Point(0, 0); 618 618 this.tvSchedules.Name = "tvSchedules"; 619 this.tvSchedules.Size = new System.Drawing.Size(128, 3 95);619 this.tvSchedules.Size = new System.Drawing.Size(128, 332); 620 620 this.tvSchedules.Sorted = true; 621 621 this.tvSchedules.TabIndex = 1; … … 664 664 this.panelRight.Location = new System.Drawing.Point(941, 0); 665 665 this.panelRight.Name = "panelRight"; 666 this.panelRight.Size = new System.Drawing.Size(128, 3 95);666 this.panelRight.Size = new System.Drawing.Size(128, 332); 667 667 this.panelRight.TabIndex = 3; 668 668 this.panelRight.Visible = false; … … 762 762 this.panelCenter.Location = new System.Drawing.Point(136, 24); 763 763 this.panelCenter.Name = "panelCenter"; 764 this.panelCenter.Size = new System.Drawing.Size(802, 347);764 this.panelCenter.Size = new System.Drawing.Size(802, 284); 765 765 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); 766 885 // 767 886 // calendarGrid1 … … 784 903 this.calendarGrid1.Resources = ((System.Collections.ArrayList)(resources.GetObject("calendarGrid1.Resources"))); 785 904 this.calendarGrid1.SelectedAppointment = 0; 786 this.calendarGrid1.Size = new System.Drawing.Size(802, 347);905 this.calendarGrid1.Size = new System.Drawing.Size(802, 284); 787 906 this.calendarGrid1.StartDate = new System.DateTime(2003, 1, 27, 0, 0, 0, 0); 788 907 this.calendarGrid1.TabIndex = 0; … … 794 913 this.calendarGrid1.MouseEnter += new System.EventHandler(this.calendarGrid1_MouseEnter); 795 914 // 796 // ctxCalendarGrid797 //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 // ctxCalGridAdd813 //814 this.ctxCalGridAdd.Index = 0;815 this.ctxCalGridAdd.Text = "Add Appointment";816 this.ctxCalGridAdd.Click += new System.EventHandler(this.ctxCalGridAdd_Click);817 //818 // ctxCalGridEdit819 //820 this.ctxCalGridEdit.Index = 1;821 this.ctxCalGridEdit.Text = "Edit Appointment";822 this.ctxCalGridEdit.Click += new System.EventHandler(this.ctxCalGridEdit_Click);823 //824 // ctxCalGridDelete825 //826 this.ctxCalGridDelete.Index = 2;827 this.ctxCalGridDelete.Text = "Cancel Appointment";828 this.ctxCalGridDelete.Click += new System.EventHandler(this.ctxCalGridDelete_Click);829 //830 // ctxCalGridCheckIn831 //832 this.ctxCalGridCheckIn.Index = 3;833 this.ctxCalGridCheckIn.Text = "Check In Patient";834 this.ctxCalGridCheckIn.Click += new System.EventHandler(this.ctxCalGridCheckIn_Click);835 //836 // menuItem2837 //838 this.menuItem2.Index = 4;839 this.menuItem2.Text = "-";840 //841 // ctxCalGridNoShow842 //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 // ctxCalGridNoShowUndo848 //849 this.ctxCalGridNoShowUndo.Index = 6;850 this.ctxCalGridNoShowUndo.Text = "Undo NoShow";851 this.ctxCalGridNoShowUndo.Click += new System.EventHandler(this.ctxCalGridNoShowUndo_Click);852 //853 // menuItem9854 //855 this.menuItem9.Index = 7;856 this.menuItem9.Text = "-";857 //858 // ctxCalGridWalkin859 //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 // menuItem10865 //866 this.menuItem10.Index = 9;867 this.menuItem10.Text = "-";868 //869 // ctxCalGridReprintRoutingSlip870 //871 this.ctxCalGridReprintRoutingSlip.Index = 10;872 this.ctxCalGridReprintRoutingSlip.Text = "&Reprint Routing Slip";873 this.ctxCalGridReprintRoutingSlip.Click += new System.EventHandler(this.ctxCalGridReprintRoutingSlip_Click);874 //875 // panelBottom876 //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 // statusBar1885 //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 // splitter1894 //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 // splitter2902 //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 // printRoutingSlip911 //912 this.printRoutingSlip.DocumentName = "Routing Slip";913 this.printRoutingSlip.PrintPage += new System.Drawing.Printing.PrintPageEventHandler(this.printRoutingSlip_PrintPage);914 //915 915 // CGView 916 916 // 917 917 this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); 918 this.ClientSize = new System.Drawing.Size(1069, 3 95);918 this.ClientSize = new System.Drawing.Size(1069, 332); 919 919 this.Controls.Add(this.panelCenter); 920 920 this.Controls.Add(this.panelBottom); -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CalendarGrid.cs
r1073 r1075 51 51 private Timer m_Timer; // Timeer used in Drag and Drop Operations 52 52 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 55 56 56 57 public delegate void CGAppointmentChangedHandler(object sender, CGAppointmentChangedArgs e); … … 1186 1187 /// Otherwise, when scrolling, it gets garbled. 1187 1188 /// </summary> 1188 /// <param name="msg">Handles t womessages:1189 /// <param name="msg">Handles three messages: 1189 1190 /// WM_VSCROLL (0x115 - Vertical Scrolling) 1190 1191 /// WM_HSCROLL (0x114 - Horizontal Scrolling) 1192 /// WM_MOUSEWHEEL (0x20a - Mouse Wheel Movement) 1191 1193 /// </param> 1192 1194 protected override void WndProc(ref Message msg) … … 1194 1196 try 1195 1197 { 1196 if (msg.Msg == WM_VSCROLL )1198 if (msg.Msg == WM_VSCROLL || msg.Msg == WM_MOUSEWHEEL) 1197 1199 { 1198 1200 this.m_bScroll = true; -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DManagement.cs
r899 r1075 692 692 this.tpResourceGroups.Location = new System.Drawing.Point(4, 22); 693 693 this.tpResourceGroups.Name = "tpResourceGroups"; 694 this.tpResourceGroups.Size = new System.Drawing.Size( 579, 362);694 this.tpResourceGroups.Size = new System.Drawing.Size(696, 428); 695 695 this.tpResourceGroups.TabIndex = 4; 696 696 this.tpResourceGroups.Text = "Resource Groups"; … … 706 706 this.grdResourceGroup.Name = "grdResourceGroup"; 707 707 this.grdResourceGroup.ReadOnly = true; 708 this.grdResourceGroup.Size = new System.Drawing.Size( 579, 250);708 this.grdResourceGroup.Size = new System.Drawing.Size(696, 316); 709 709 this.grdResourceGroup.TabIndex = 4; 710 710 this.grdResourceGroup.CurrentCellChanged += new System.EventHandler(this.grdResourceGroup_CurrentCellChanged); … … 715 715 this.pnlDescriptionResourceGroup.Controls.Add(this.grpDescriptionResourceGroup); 716 716 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); 718 718 this.pnlDescriptionResourceGroup.Name = "pnlDescriptionResourceGroup"; 719 this.pnlDescriptionResourceGroup.Size = new System.Drawing.Size( 579, 72);719 this.pnlDescriptionResourceGroup.Size = new System.Drawing.Size(696, 72); 720 720 this.pnlDescriptionResourceGroup.TabIndex = 3; 721 721 // … … 726 726 this.grpDescriptionResourceGroup.Location = new System.Drawing.Point(0, 0); 727 727 this.grpDescriptionResourceGroup.Name = "grpDescriptionResourceGroup"; 728 this.grpDescriptionResourceGroup.Size = new System.Drawing.Size( 579, 72);728 this.grpDescriptionResourceGroup.Size = new System.Drawing.Size(696, 72); 729 729 this.grpDescriptionResourceGroup.TabIndex = 0; 730 730 this.grpDescriptionResourceGroup.TabStop = false; … … 736 736 this.lblDescriptionResourceGroup.Location = new System.Drawing.Point(3, 16); 737 737 this.lblDescriptionResourceGroup.Name = "lblDescriptionResourceGroup"; 738 this.lblDescriptionResourceGroup.Size = new System.Drawing.Size( 573, 53);738 this.lblDescriptionResourceGroup.Size = new System.Drawing.Size(690, 53); 739 739 this.lblDescriptionResourceGroup.TabIndex = 0; 740 740 this.lblDescriptionResourceGroup.Text = resources.GetString("lblDescriptionResourceGroup.Text"); … … 746 746 this.pnlAddEditResourceGroups.Controls.Add(this.cmdAddResourceGroup); 747 747 this.pnlAddEditResourceGroups.Dock = System.Windows.Forms.DockStyle.Bottom; 748 this.pnlAddEditResourceGroups.Location = new System.Drawing.Point(0, 3 22);748 this.pnlAddEditResourceGroups.Location = new System.Drawing.Point(0, 388); 749 749 this.pnlAddEditResourceGroups.Name = "pnlAddEditResourceGroups"; 750 this.pnlAddEditResourceGroups.Size = new System.Drawing.Size( 579, 40);750 this.pnlAddEditResourceGroups.Size = new System.Drawing.Size(696, 40); 751 751 this.pnlAddEditResourceGroups.TabIndex = 2; 752 752 // … … 787 787 this.tpAccessTypes.Location = new System.Drawing.Point(4, 22); 788 788 this.tpAccessTypes.Name = "tpAccessTypes"; 789 this.tpAccessTypes.Size = new System.Drawing.Size( 579, 362);789 this.tpAccessTypes.Size = new System.Drawing.Size(696, 428); 790 790 this.tpAccessTypes.TabIndex = 2; 791 791 this.tpAccessTypes.Text = "Access Types"; … … 800 800 this.grdAccessTypes.ReadOnly = true; 801 801 this.grdAccessTypes.RowHeadersVisible = false; 802 this.grdAccessTypes.Size = new System.Drawing.Size( 579, 250);802 this.grdAccessTypes.Size = new System.Drawing.Size(696, 316); 803 803 this.grdAccessTypes.TabIndex = 3; 804 804 this.grdAccessTypes.CurrentCellChanged += new System.EventHandler(this.grdAccessTypes_CurrentCellChanged); … … 808 808 this.pnlDescriptionAT.Controls.Add(this.grpDescriptionAT); 809 809 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); 811 811 this.pnlDescriptionAT.Name = "pnlDescriptionAT"; 812 this.pnlDescriptionAT.Size = new System.Drawing.Size( 579, 72);812 this.pnlDescriptionAT.Size = new System.Drawing.Size(696, 72); 813 813 this.pnlDescriptionAT.TabIndex = 2; 814 814 // … … 819 819 this.grpDescriptionAT.Location = new System.Drawing.Point(0, 0); 820 820 this.grpDescriptionAT.Name = "grpDescriptionAT"; 821 this.grpDescriptionAT.Size = new System.Drawing.Size( 579, 72);821 this.grpDescriptionAT.Size = new System.Drawing.Size(696, 72); 822 822 this.grpDescriptionAT.TabIndex = 0; 823 823 this.grpDescriptionAT.TabStop = false; … … 829 829 this.label1.Location = new System.Drawing.Point(3, 16); 830 830 this.label1.Name = "label1"; 831 this.label1.Size = new System.Drawing.Size( 573, 53);831 this.label1.Size = new System.Drawing.Size(690, 53); 832 832 this.label1.TabIndex = 1; 833 833 this.label1.Text = " Use the Access Types panel to define the kinds of access available for schedulin" + … … 840 840 this.pnlAddEditAT.Controls.Add(this.cmdAddAT); 841 841 this.pnlAddEditAT.Dock = System.Windows.Forms.DockStyle.Bottom; 842 this.pnlAddEditAT.Location = new System.Drawing.Point(0, 3 22);842 this.pnlAddEditAT.Location = new System.Drawing.Point(0, 388); 843 843 this.pnlAddEditAT.Name = "pnlAddEditAT"; 844 this.pnlAddEditAT.Size = new System.Drawing.Size( 579, 40);844 this.pnlAddEditAT.Size = new System.Drawing.Size(696, 40); 845 845 this.pnlAddEditAT.TabIndex = 1; 846 846 // … … 870 870 this.tpAccessGroups.Location = new System.Drawing.Point(4, 22); 871 871 this.tpAccessGroups.Name = "tpAccessGroups"; 872 this.tpAccessGroups.Size = new System.Drawing.Size( 579, 362);872 this.tpAccessGroups.Size = new System.Drawing.Size(696, 428); 873 873 this.tpAccessGroups.TabIndex = 1; 874 874 this.tpAccessGroups.Text = "Access Groups"; … … 884 884 this.grdAccessGroups.Name = "grdAccessGroups"; 885 885 this.grdAccessGroups.ReadOnly = true; 886 this.grdAccessGroups.Size = new System.Drawing.Size( 579, 250);886 this.grdAccessGroups.Size = new System.Drawing.Size(696, 316); 887 887 this.grdAccessGroups.TabIndex = 5; 888 888 this.grdAccessGroups.CurrentCellChanged += new System.EventHandler(this.grdAccessGroups_CurrentCellChanged); … … 893 893 this.pnlDescriptionAccessGroups.Controls.Add(this.grpDescriptionAccessGroups); 894 894 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); 896 896 this.pnlDescriptionAccessGroups.Name = "pnlDescriptionAccessGroups"; 897 this.pnlDescriptionAccessGroups.Size = new System.Drawing.Size( 579, 72);897 this.pnlDescriptionAccessGroups.Size = new System.Drawing.Size(696, 72); 898 898 this.pnlDescriptionAccessGroups.TabIndex = 4; 899 899 // … … 904 904 this.grpDescriptionAccessGroups.Location = new System.Drawing.Point(0, 0); 905 905 this.grpDescriptionAccessGroups.Name = "grpDescriptionAccessGroups"; 906 this.grpDescriptionAccessGroups.Size = new System.Drawing.Size( 579, 72);906 this.grpDescriptionAccessGroups.Size = new System.Drawing.Size(696, 72); 907 907 this.grpDescriptionAccessGroups.TabIndex = 0; 908 908 this.grpDescriptionAccessGroups.TabStop = false; … … 914 914 this.lblDescriptionAccessGroups.Location = new System.Drawing.Point(3, 16); 915 915 this.lblDescriptionAccessGroups.Name = "lblDescriptionAccessGroups"; 916 this.lblDescriptionAccessGroups.Size = new System.Drawing.Size( 573, 53);916 this.lblDescriptionAccessGroups.Size = new System.Drawing.Size(690, 53); 917 917 this.lblDescriptionAccessGroups.TabIndex = 0; 918 918 this.lblDescriptionAccessGroups.Text = resources.GetString("lblDescriptionAccessGroups.Text"); … … 924 924 this.pnlAddEditAccessGroup.Controls.Add(this.cmdAddAccessGroup); 925 925 this.pnlAddEditAccessGroup.Dock = System.Windows.Forms.DockStyle.Bottom; 926 this.pnlAddEditAccessGroup.Location = new System.Drawing.Point(0, 3 22);926 this.pnlAddEditAccessGroup.Location = new System.Drawing.Point(0, 388); 927 927 this.pnlAddEditAccessGroup.Name = "pnlAddEditAccessGroup"; 928 this.pnlAddEditAccessGroup.Size = new System.Drawing.Size( 579, 40);928 this.pnlAddEditAccessGroup.Size = new System.Drawing.Size(696, 40); 929 929 this.pnlAddEditAccessGroup.TabIndex = 3; 930 930 // … … 972 972 this.tpTransferAppts.Location = new System.Drawing.Point(4, 22); 973 973 this.tpTransferAppts.Name = "tpTransferAppts"; 974 this.tpTransferAppts.Size = new System.Drawing.Size( 579, 362);974 this.tpTransferAppts.Size = new System.Drawing.Size(696, 428); 975 975 this.tpTransferAppts.TabIndex = 5; 976 976 this.tpTransferAppts.Text = "Copy Appointments"; … … 1042 1042 this.pnlDescriptionXfer.Controls.Add(this.grpDescriptionXfer); 1043 1043 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); 1045 1045 this.pnlDescriptionXfer.Name = "pnlDescriptionXfer"; 1046 this.pnlDescriptionXfer.Size = new System.Drawing.Size( 579, 72);1046 this.pnlDescriptionXfer.Size = new System.Drawing.Size(696, 72); 1047 1047 this.pnlDescriptionXfer.TabIndex = 2; 1048 1048 // … … 1053 1053 this.grpDescriptionXfer.Location = new System.Drawing.Point(0, 0); 1054 1054 this.grpDescriptionXfer.Name = "grpDescriptionXfer"; 1055 this.grpDescriptionXfer.Size = new System.Drawing.Size( 579, 72);1055 this.grpDescriptionXfer.Size = new System.Drawing.Size(696, 72); 1056 1056 this.grpDescriptionXfer.TabIndex = 0; 1057 1057 this.grpDescriptionXfer.TabStop = false; … … 1063 1063 this.lblDescriptionXfer.Location = new System.Drawing.Point(3, 16); 1064 1064 this.lblDescriptionXfer.Name = "lblDescriptionXfer"; 1065 this.lblDescriptionXfer.Size = new System.Drawing.Size( 573, 53);1065 this.lblDescriptionXfer.Size = new System.Drawing.Size(690, 53); 1066 1066 this.lblDescriptionXfer.TabIndex = 0; 1067 1067 this.lblDescriptionXfer.Text = resources.GetString("lblDescriptionXfer.Text"); … … 1071 1071 this.pnlCmdXfer.Controls.Add(this.cmdCopyAppts); 1072 1072 this.pnlCmdXfer.Dock = System.Windows.Forms.DockStyle.Bottom; 1073 this.pnlCmdXfer.Location = new System.Drawing.Point(0, 3 22);1073 this.pnlCmdXfer.Location = new System.Drawing.Point(0, 388); 1074 1074 this.pnlCmdXfer.Name = "pnlCmdXfer"; 1075 this.pnlCmdXfer.Size = new System.Drawing.Size( 579, 40);1075 this.pnlCmdXfer.Size = new System.Drawing.Size(696, 40); 1076 1076 this.pnlCmdXfer.TabIndex = 1; 1077 1077 // … … 1092 1092 this.tpWorkStations.Location = new System.Drawing.Point(4, 22); 1093 1093 this.tpWorkStations.Name = "tpWorkStations"; 1094 this.tpWorkStations.Size = new System.Drawing.Size( 579, 362);1094 this.tpWorkStations.Size = new System.Drawing.Size(696, 428); 1095 1095 this.tpWorkStations.TabIndex = 6; 1096 1096 this.tpWorkStations.Text = "WorkStations"; … … 1106 1106 this.grdWorkStations.Name = "grdWorkStations"; 1107 1107 this.grdWorkStations.ReadOnly = true; 1108 this.grdWorkStations.Size = new System.Drawing.Size( 579, 250);1108 this.grdWorkStations.Size = new System.Drawing.Size(696, 316); 1109 1109 this.grdWorkStations.TabIndex = 6; 1110 1110 // … … 1113 1113 this.pnlWorkstations.Controls.Add(this.groupBox1); 1114 1114 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); 1116 1116 this.pnlWorkstations.Name = "pnlWorkstations"; 1117 this.pnlWorkstations.Size = new System.Drawing.Size( 579, 72);1117 this.pnlWorkstations.Size = new System.Drawing.Size(696, 72); 1118 1118 this.pnlWorkstations.TabIndex = 5; 1119 1119 // … … 1124 1124 this.groupBox1.Location = new System.Drawing.Point(0, 0); 1125 1125 this.groupBox1.Name = "groupBox1"; 1126 this.groupBox1.Size = new System.Drawing.Size( 579, 72);1126 this.groupBox1.Size = new System.Drawing.Size(696, 72); 1127 1127 this.groupBox1.TabIndex = 0; 1128 1128 this.groupBox1.TabStop = false; … … 1134 1134 this.lblWorkstations.Location = new System.Drawing.Point(3, 16); 1135 1135 this.lblWorkstations.Name = "lblWorkstations"; 1136 this.lblWorkstations.Size = new System.Drawing.Size( 573, 53);1136 this.lblWorkstations.Size = new System.Drawing.Size(690, 53); 1137 1137 this.lblWorkstations.TabIndex = 0; 1138 1138 this.lblWorkstations.Text = resources.GetString("lblWorkstations.Text"); … … 1145 1145 this.panel1.Controls.Add(this.cmdWorkStationsRefresh); 1146 1146 this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; 1147 this.panel1.Location = new System.Drawing.Point(0, 3 22);1147 this.panel1.Location = new System.Drawing.Point(0, 388); 1148 1148 this.panel1.Name = "panel1"; 1149 this.panel1.Size = new System.Drawing.Size( 579, 40);1149 this.panel1.Size = new System.Drawing.Size(696, 40); 1150 1150 this.panel1.TabIndex = 4; 1151 1151 // … … 1194 1194 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 1195 1195 this.Text = "Scheduling Management"; 1196 this.Closing += new System.ComponentModel.CancelEventHandler(this.DManagement_Closing); 1196 1197 this.Load += new System.EventHandler(this.DManagement_Load); 1197 this.Closing += new System.ComponentModel.CancelEventHandler(this.DManagement_Closing);1198 1198 this.pnlPageBottom.ResumeLayout(false); 1199 1199 this.tabMain.ResumeLayout(false); -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DManagement.resx
r627 r1075 113 113 </resheader> 114 114 <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> 116 116 </resheader> 117 117 <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> 119 119 </resheader> 120 120 <data name="lblDescription.Text" xml:space="preserve">
Note:
See TracChangeset
for help on using the changeset viewer.