Changeset 620 for Scheduling
- Timestamp:
- Nov 30, 2009, 11:54:57 PM (15 years ago)
- Location:
- Scheduling/trunk/cs/bsdx0200GUISourceCode
- Files:
-
- 1 deleted
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/trunk/cs/bsdx0200GUISourceCode/AssemblyInfo.cs
r614 r620 8 8 // 9 9 [assembly: AssemblyTitle("ClinicalScheduling")] 10 [assembly: AssemblyDescription(" IHSWindows Scheduling Application")]10 [assembly: AssemblyDescription("Windows Scheduling Application")] 11 11 [assembly: AssemblyConfiguration("")] 12 12 [assembly: AssemblyCompany("Indian Health Service")] -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGAVDocument.cs
r614 r620 171 171 if ((a.AppointmentKey != pAppt.AppointmentKey) && (CGSchedLib.TimesOverlap(dNewStart, dNewEnd, a.StartTime, a.EndTime))) 172 172 { 173 MessageBox.Show("Access blocks may not overlap."," IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);173 MessageBox.Show("Access blocks may not overlap.","Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 174 174 return; 175 175 } … … 295 295 { 296 296 // throw new Exception("Access blocks may not overlap."); 297 MessageBox.Show("Access blocks may not overlap."," IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);297 MessageBox.Show("Access blocks may not overlap.","Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 298 298 return -1; 299 299 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGAVView.cs
r616 r620 662 662 catch (Exception ex) 663 663 { 664 MessageBox.Show("Unable to add new access block " + ex.Message, " IHSClinical Scheduling");664 MessageBox.Show("Unable to add new access block " + ex.Message, "Clinical Scheduling"); 665 665 return; 666 666 } … … 696 696 if (CGSchedLib.TimesOverlap(dStart, dEnd, a.StartTime, a.EndTime)) 697 697 { 698 MessageBox.Show("Access blocks may not overlap."," IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);698 MessageBox.Show("Access blocks may not overlap.","Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 699 699 return; 700 700 } … … 721 721 catch (Exception ex) 722 722 { 723 MessageBox.Show("Unable to add new access block " + ex.Message, " IHSClinical Scheduling");723 MessageBox.Show("Unable to add new access block " + ex.Message, "Clinical Scheduling"); 724 724 return; 725 725 } … … 742 742 sMsg = " these access blocks?"; 743 743 744 if (MessageBox.Show("Are you sure you want to delete" + sMsg, " IHSClinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes)744 if (MessageBox.Show("Are you sure you want to delete" + sMsg, "Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes) 745 745 { 746 746 calendarGrid1.CGToolTip.Active = true; … … 761 761 catch (Exception ex) 762 762 { 763 MessageBox.Show("Unable to delete access block" + ex.Message, " IHSClinical Scheduling");763 MessageBox.Show("Unable to delete access block" + ex.Message, "Clinical Scheduling"); 764 764 } 765 765 } … … 810 810 catch (Exception ex) 811 811 { 812 MessageBox.Show("Scheduling Management Error: " + ex.Message, " IHSClinical Scheduling");812 MessageBox.Show("Scheduling Management Error: " + ex.Message, "Clinical Scheduling"); 813 813 } 814 814 } … … 886 886 // this.DocManager.EnableAutoRefresh(false); 887 887 888 if (MessageBox.Show("Are you sure you want to move this access block?", " IHSClinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes)888 if (MessageBox.Show("Are you sure you want to move this access block?", "Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes) 889 889 return; 890 890 … … 894 894 catch (Exception ex) 895 895 { 896 MessageBox.Show("Unable to change access block " + ex.Message, " IHSClinical Scheduling");896 MessageBox.Show("Unable to change access block " + ex.Message, "Clinical Scheduling"); 897 897 this.m_DocManager.UpdateViews(); 898 898 return; … … 958 958 private void mnuHelpAbout_Click(object sender, System.EventArgs e) 959 959 { 960 MessageBox.Show(" IHS Clinical Scheduling Version " + Application.ProductVersion, "IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information);960 MessageBox.Show("Clinical Scheduling Version " + Application.ProductVersion, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information); 961 961 } 962 962 963 963 private void ImplementMsg() 964 964 { 965 MessageBox.Show(" IHSClinical Scheduling", "TODO: Implement this function");965 MessageBox.Show("Clinical Scheduling", "TODO: Implement this function"); 966 966 } 967 967 … … 1060 1060 catch (Exception ex) 1061 1061 { 1062 MessageBox.Show(this, "Error loading template: " + ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);1062 MessageBox.Show(this, "Error loading template: " + ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 1063 1063 } 1064 1064 } … … 1130 1130 // catch (Exception ex) 1131 1131 // { 1132 // MessageBox.Show(this, "Error loading template: " + ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);1132 // MessageBox.Show(this, "Error loading template: " + ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 1133 1133 // } 1134 1134 // } … … 1176 1176 catch (Exception ex) 1177 1177 { 1178 MessageBox.Show(this, "Error saving template: " + ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);1178 MessageBox.Show(this, "Error saving template: " + ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 1179 1179 } 1180 1180 } … … 1258 1258 catch (Exception ex) 1259 1259 { 1260 MessageBox.Show("Unable to add new access block " + ex.Message, " IHSClinical Scheduling");1260 MessageBox.Show("Unable to add new access block " + ex.Message, "Clinical Scheduling"); 1261 1261 return; 1262 1262 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGDocumentManager.cs
r614 r620 24 24 private Hashtable _views = new Hashtable(); 25 25 private Hashtable m_AVViews = new Hashtable(); 26 private string m_sWindowText = " IHSClinical Scheduling"; //Default Window Text26 private string m_sWindowText = "Clinical Scheduling"; //Default Window Text 27 27 private bool m_bSchedManager; 28 28 private bool m_bExitOK = true; … … 932 932 } 933 933 934 MessageBox.Show(sMsg, " IHSClinical Scheduling Administrator -- System Shutdown Notification", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);934 MessageBox.Show(sMsg, "Clinical Scheduling Administrator -- System Shutdown Notification", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 935 935 936 936 CloseAll(); -
Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs
r616 r620 1439 1439 catch (Exception ex) 1440 1440 { 1441 MessageBox.Show("Unable to edit availability for " + m_sDocName + " schedule. " + ex.Message, " IHSClinical Scheduling");1441 MessageBox.Show("Unable to edit availability for " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling"); 1442 1442 this.m_DocManager.CloseAllViews(doc); 1443 1443 return; … … 1481 1481 catch (Exception ex) 1482 1482 { 1483 MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, " IHSClinical Scheduling");1483 MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling"); 1484 1484 this.m_DocManager.CloseAllViews(doc); 1485 1485 return; … … 1615 1615 catch (Exception ex) 1616 1616 { 1617 MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, " IHSClinical Scheduling");1617 MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling"); 1618 1618 this.m_DocManager.CloseAllViews(doc); 1619 1619 return; … … 1688 1688 (a.StartTime.Date > DateTime.Today.Date) 1689 1689 && 1690 (MessageBox.Show(this, "The appointment for " + a.PatientName + " is in the future. Are you sure you want to No-Show?", " IHSWindows Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK))1690 (MessageBox.Show(this, "The appointment for " + a.PatientName + " is in the future. Are you sure you want to No-Show?", "Windows Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK)) 1691 1691 { 1692 1692 } … … 1702 1702 catch (Exception ex) 1703 1703 { 1704 MessageBox.Show("Unable to mark appointment No Show: " + ex.Message, " IHSClinical Scheduling");1704 MessageBox.Show("Unable to mark appointment No Show: " + ex.Message, "Clinical Scheduling"); 1705 1705 } 1706 1706 if (bRebook == true) … … 1867 1867 catch (Exception ex) 1868 1868 { 1869 MessageBox.Show("Unable to delete appointment. " + ex.Message, " IHSClinical Scheduling");1869 MessageBox.Show("Unable to delete appointment. " + ex.Message, "Clinical Scheduling"); 1870 1870 } 1871 1871 … … 1909 1909 (a.StartTime.Date > DateTime.Today.Date)) 1910 1910 { 1911 MessageBox.Show(this, "It is too early to check in " + a.PatientName, " IHSWindows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);1911 MessageBox.Show(this, "It is too early to check in " + a.PatientName, "Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 1912 1912 return; 1913 1913 } … … 1991 1991 catch (Exception ex) 1992 1992 { 1993 MessageBox.Show("Error checking in patient: " + ex.Message, " IHSClinical Scheduling");1993 MessageBox.Show("Error checking in patient: " + ex.Message, "Clinical Scheduling"); 1994 1994 } 1995 1995 … … 2033 2033 if (dStart.Date > DateTime.Today.Date) 2034 2034 { 2035 MessageBox.Show(this, "You cannot create a walk-in appointment for a date in the future.\n Select today's date and try again.", " IHSWindows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);2035 MessageBox.Show(this, "You cannot create a walk-in appointment for a date in the future.\n Select today's date and try again.", "Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 2036 2036 return; 2037 2037 } … … 2047 2047 if (m_nSlots < 1) 2048 2048 { 2049 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", " IHSClinical Scheduling",MessageBoxButtons.YesNo);2049 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo); 2050 2050 if (dr != DialogResult.Yes) 2051 2051 { … … 2083 2083 if (m_nSlots < 1) 2084 2084 { 2085 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", " IHSClinical Scheduling",MessageBoxButtons.YesNo);2085 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo); 2086 2086 if (dr != DialogResult.Yes) 2087 2087 { … … 2110 2110 catch (Exception ex) 2111 2111 { 2112 MessageBox.Show("Unable to add walk-in appointment " + ex.Message, " IHSClinical Scheduling");2112 MessageBox.Show("Unable to add walk-in appointment " + ex.Message, "Clinical Scheduling"); 2113 2113 return; 2114 2114 … … 2139 2139 DataRowView drv = dvHoliday[nFind]; 2140 2140 sHoliday = drv["NAME"].ToString(); 2141 if (MessageBox.Show(this, dStart.ToShortDateString() + " is a holiday (" + sHoliday + "). Are you sure you want to make this appointment?"," IHSClinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK)2141 if (MessageBox.Show(this, dStart.ToShortDateString() + " is a holiday (" + sHoliday + "). Are you sure you want to make this appointment?","Clinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK) 2142 2142 return; 2143 2143 } … … 2158 2158 if (m_nSlots < 1) 2159 2159 { 2160 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", " IHSClinical Scheduling",MessageBoxButtons.YesNo);2160 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo); 2161 2161 if (dr != DialogResult.Yes) 2162 2162 { … … 2207 2207 if (m_nSlots < 1) 2208 2208 { 2209 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", " IHSClinical Scheduling",MessageBoxButtons.YesNo);2209 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo); 2210 2210 if (dr != DialogResult.Yes) 2211 2211 { … … 2219 2219 catch (Exception ex) 2220 2220 { 2221 MessageBox.Show("Unable to add new appointment " + ex.Message, " IHSClinical Scheduling");2221 MessageBox.Show("Unable to add new appointment " + ex.Message, "Clinical Scheduling"); 2222 2222 return; 2223 2223 … … 2243 2243 catch (Exception ex) 2244 2244 { 2245 MessageBox.Show("Unable to refresh document " + ex.Message, " IHSClinical Scheduling");2245 MessageBox.Show("Unable to refresh document " + ex.Message, "Clinical Scheduling"); 2246 2246 } 2247 2247 finally … … 2264 2264 catch (Exception ex) 2265 2265 { 2266 MessageBox.Show("Unable to update arrays " + ex.Message, " IHSClinical Scheduling");2266 MessageBox.Show("Unable to update arrays " + ex.Message, "Clinical Scheduling"); 2267 2267 } 2268 2268 } … … 2309 2309 catch (Exception ex) 2310 2310 { 2311 MessageBox.Show("Scheduling Management Error: " + ex.Message, " IHSClinical Scheduling");2311 MessageBox.Show("Scheduling Management Error: " + ex.Message, "Clinical Scheduling"); 2312 2312 } 2313 2313 } … … 2337 2337 catch (Exception ex) 2338 2338 { 2339 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);2339 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 2340 2340 } 2341 2341 } … … 2392 2392 catch (Exception ex) 2393 2393 { 2394 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);2394 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 2395 2395 } 2396 2396 } … … 2666 2666 if (e.Appointment.CheckInTime.Ticks > 0) 2667 2667 { 2668 MessageBox.Show("You cannot change the appointment time because the patient has already checked in.", " IHSClinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);2668 MessageBox.Show("You cannot change the appointment time because the patient has already checked in.", "Clinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); 2669 2669 return; 2670 2670 } … … 2675 2675 return; 2676 2676 2677 if (MessageBox.Show("Are you sure you want to move this appointment?", " IHSClinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes)2677 if (MessageBox.Show("Are you sure you want to move this appointment?", "Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes) 2678 2678 return; 2679 2679 … … 2708 2708 if (bSlotsAvailable == false) 2709 2709 { 2710 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", " IHSClinical Scheduling",MessageBoxButtons.YesNo);2710 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo); 2711 2711 if (dr != DialogResult.Yes) 2712 2712 { … … 2731 2731 catch (Exception ex) 2732 2732 { 2733 MessageBox.Show("Unable to change appointment " + ex.Message, " IHSClinical Scheduling");2733 MessageBox.Show("Unable to change appointment " + ex.Message, "Clinical Scheduling"); 2734 2734 this.m_DocManager.UpdateViews(); 2735 2735 return; … … 2784 2784 private void mnuHelpAbout_Click(object sender, System.EventArgs e) 2785 2785 { 2786 MessageBox.Show(" IHS Clinical Scheduling Version " + Application.ProductVersion, "IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information);2786 MessageBox.Show("Clinical Scheduling Version " + Application.ProductVersion, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information); 2787 2787 } 2788 2788 2789 2789 private void ImplementMsg() 2790 2790 { 2791 MessageBox.Show(" IHSClinical Scheduling", "TODO: Implement this function");2791 MessageBox.Show("Clinical Scheduling", "TODO: Implement this function"); 2792 2792 } 2793 2793 … … 2895 2895 if (bSlotsAvailable == false) 2896 2896 { 2897 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", " IHSClinical Scheduling",MessageBoxButtons.YesNo);2897 DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "Clinical Scheduling",MessageBoxButtons.YesNo); 2898 2898 if (dr != DialogResult.Yes) 2899 2899 { … … 2910 2910 catch (Exception ex) 2911 2911 { 2912 MessageBox.Show("Unable to add new appointment " + ex.Message, " IHSClinical Scheduling");2912 MessageBox.Show("Unable to add new appointment " + ex.Message, "Clinical Scheduling"); 2913 2913 return; 2914 2914 } … … 2954 2954 catch(Exception ex) 2955 2955 { 2956 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);2956 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 2957 2957 } 2958 2958 } … … 2980 2980 catch(Exception ex) 2981 2981 { 2982 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);2982 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 2983 2983 } 2984 2984 … … 3014 3014 catch(Exception ex) 3015 3015 { 3016 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);3016 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 3017 3017 } 3018 3018 } … … 3074 3074 catch(Exception ex) 3075 3075 { 3076 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);3076 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 3077 3077 } 3078 3078 … … 3118 3118 catch(Exception ex) 3119 3119 { 3120 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);3120 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 3121 3121 } 3122 3122 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DAppointPage.cs
r616 r620 672 672 catch (Exception ex) 673 673 { 674 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);674 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 675 675 } 676 676 } … … 699 699 catch (Exception ex) 700 700 { 701 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);701 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 702 702 } 703 703 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DManagement.cs
r614 r620 2271 2271 catch(Exception ex) 2272 2272 { 2273 MessageBox.Show(this,ex.Message," IHSClinical Scheduling");2273 MessageBox.Show(this,ex.Message,"Clinical Scheduling"); 2274 2274 } 2275 2275 … … 2368 2368 string sMessage; 2369 2369 dInputText dlg = new dInputText(); 2370 dlg.DialogTitle = " IHSClinical Scheduling - Send Message to Scheduling Clients.";2370 dlg.DialogTitle = "Clinical Scheduling - Send Message to Scheduling Clients."; 2371 2371 2372 2372 if (dlg.ShowDialog(this) != DialogResult.OK) … … 2383 2383 private void cmdWorkStationsShutdown_Click(object sender, System.EventArgs e) 2384 2384 { 2385 if (MessageBox.Show("Are you sure you want to shut down all IHS Clincal Scheduling clients?" ,"IHSClinical Scheduling Client Shutdown", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes)2385 if (MessageBox.Show("Are you sure you want to shut down all Clincal Scheduling clients?" ,"Clinical Scheduling Client Shutdown", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) 2386 2386 { 2387 2387 return; -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DPatientLookup.cs
r614 r620 267 267 catch (Exception ex) 268 268 { 269 MessageBox.Show(this, ex.Message, " IHSClinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);269 MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 270 270 } 271 271 } -
Scheduling/trunk/cs/bsdx0200GUISourceCode/DSplash.cs
r614 r620 68 68 this.label1.Size = new System.Drawing.Size(448, 40); 69 69 this.label1.TabIndex = 0; 70 this.label1.Text = " IHSClinical Scheduling";70 this.label1.Text = "Clinical Scheduling"; 71 71 this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 72 72 // … … 111 111 this.Name = "DSplash"; 112 112 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 113 this.Text = " IHSClinical Scheduling";113 this.Text = "Clinical Scheduling"; 114 114 this.Load += new System.EventHandler(this.DSplash_Load); 115 115 this.ResumeLayout(false); -
Scheduling/trunk/cs/bsdx0200GUISourceCode/dInputText.cs
r614 r620 127 127 this.Name = "dInputText"; 128 128 this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 129 this.Text = " IHSClinical Scheduling";129 this.Text = "Clinical Scheduling"; 130 130 this.pnlPageBottom.ResumeLayout(false); 131 131 this.ResumeLayout(false);
Note:
See TracChangeset
for help on using the changeset viewer.