Changeset 620 for Scheduling/trunk/cs/bsdx0200GUISourceCode/CGAVView.cs
- Timestamp:
- Nov 30, 2009, 11:54:57 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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 }
Note:
See TracChangeset
for help on using the changeset viewer.