Remove references to IHS; typically "IHS Clinical Scheduling" becomes "Clinical Scheduling"

Deleted Debug folder--no need to version this.
This commit is contained in:
sam 2009-12-01 04:54:57 +00:00
parent a1ffacceb8
commit 0a8d138b14
40 changed files with 62 additions and 1208 deletions

View File

@ -7,7 +7,7 @@ using System.Runtime.CompilerServices;
// associated with an assembly. // associated with an assembly.
// //
[assembly: AssemblyTitle("ClinicalScheduling")] [assembly: AssemblyTitle("ClinicalScheduling")]
[assembly: AssemblyDescription("IHS Windows Scheduling Application")] [assembly: AssemblyDescription("Windows Scheduling Application")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Indian Health Service")] [assembly: AssemblyCompany("Indian Health Service")]
[assembly: AssemblyProduct("")] [assembly: AssemblyProduct("")]

View File

@ -170,7 +170,7 @@ namespace IndianHealthService.ClinicalScheduling
DateTime sEnd2 = a.EndTime; DateTime sEnd2 = a.EndTime;
if ((a.AppointmentKey != pAppt.AppointmentKey) && (CGSchedLib.TimesOverlap(dNewStart, dNewEnd, a.StartTime, a.EndTime))) if ((a.AppointmentKey != pAppt.AppointmentKey) && (CGSchedLib.TimesOverlap(dNewStart, dNewEnd, a.StartTime, a.EndTime)))
{ {
MessageBox.Show("Access blocks may not overlap.","IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show("Access blocks may not overlap.","Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return; return;
} }
} }
@ -294,7 +294,7 @@ namespace IndianHealthService.ClinicalScheduling
if (CGSchedLib.TimesOverlap(aCopy.StartTime, aCopy.EndTime, a.StartTime, a.EndTime)) if (CGSchedLib.TimesOverlap(aCopy.StartTime, aCopy.EndTime, a.StartTime, a.EndTime))
{ {
// throw new Exception("Access blocks may not overlap."); // throw new Exception("Access blocks may not overlap.");
MessageBox.Show("Access blocks may not overlap.","IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show("Access blocks may not overlap.","Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return -1; return -1;
} }

View File

@ -661,7 +661,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to add new access block " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to add new access block " + ex.Message, "Clinical Scheduling");
return; return;
} }
try try
@ -695,7 +695,7 @@ namespace IndianHealthService.ClinicalScheduling
DateTime sEnd2 = a.EndTime; DateTime sEnd2 = a.EndTime;
if (CGSchedLib.TimesOverlap(dStart, dEnd, a.StartTime, a.EndTime)) if (CGSchedLib.TimesOverlap(dStart, dEnd, a.StartTime, a.EndTime))
{ {
MessageBox.Show("Access blocks may not overlap.","IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show("Access blocks may not overlap.","Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return; return;
} }
} }
@ -720,7 +720,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to add new access block " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to add new access block " + ex.Message, "Clinical Scheduling");
return; return;
} }
try try
@ -741,7 +741,7 @@ namespace IndianHealthService.ClinicalScheduling
if (calendarGrid1.SelectedAppointments.AppointmentTable.Count > 1) if (calendarGrid1.SelectedAppointments.AppointmentTable.Count > 1)
sMsg = " these access blocks?"; sMsg = " these access blocks?";
if (MessageBox.Show("Are you sure you want to delete" + sMsg, "IHS Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes) if (MessageBox.Show("Are you sure you want to delete" + sMsg, "Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes)
{ {
calendarGrid1.CGToolTip.Active = true; calendarGrid1.CGToolTip.Active = true;
return; return;
@ -760,7 +760,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to delete access block" + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to delete access block" + ex.Message, "Clinical Scheduling");
} }
} }
if (bDeleted == true) if (bDeleted == true)
@ -809,7 +809,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Scheduling Management Error: " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Scheduling Management Error: " + ex.Message, "Clinical Scheduling");
} }
} }
@ -885,7 +885,7 @@ namespace IndianHealthService.ClinicalScheduling
{ {
// this.DocManager.EnableAutoRefresh(false); // this.DocManager.EnableAutoRefresh(false);
if (MessageBox.Show("Are you sure you want to move this access block?", "IHS Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes) if (MessageBox.Show("Are you sure you want to move this access block?", "Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes)
return; return;
m_Document.ChangeAppointmentTime(e.Appointment, e.StartTime, e.EndTime, e.Resource); m_Document.ChangeAppointmentTime(e.Appointment, e.StartTime, e.EndTime, e.Resource);
@ -893,7 +893,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to change access block " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to change access block " + ex.Message, "Clinical Scheduling");
this.m_DocManager.UpdateViews(); this.m_DocManager.UpdateViews();
return; return;
} }
@ -957,12 +957,12 @@ namespace IndianHealthService.ClinicalScheduling
private void mnuHelpAbout_Click(object sender, System.EventArgs e) private void mnuHelpAbout_Click(object sender, System.EventArgs e)
{ {
MessageBox.Show("IHS Clinical Scheduling Version " + Application.ProductVersion, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Clinical Scheduling Version " + Application.ProductVersion, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information);
} }
private void ImplementMsg() private void ImplementMsg()
{ {
MessageBox.Show("IHS Clinical Scheduling", "TODO: Implement this function"); MessageBox.Show("Clinical Scheduling", "TODO: Implement this function");
} }
private void mnuLoadTemplate_Click(object sender, System.EventArgs e) private void mnuLoadTemplate_Click(object sender, System.EventArgs e)
@ -1059,7 +1059,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show(this, "Error loading template: " + ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, "Error loading template: " + ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -1129,7 +1129,7 @@ namespace IndianHealthService.ClinicalScheduling
// }//end try // }//end try
// catch (Exception ex) // catch (Exception ex)
// { // {
// MessageBox.Show(this, "Error loading template: " + ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); // MessageBox.Show(this, "Error loading template: " + ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
// } // }
// } // }
@ -1175,7 +1175,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show(this, "Error saving template: " + ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, "Error saving template: " + ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -1257,7 +1257,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to add new access block " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to add new access block " + ex.Message, "Clinical Scheduling");
return; return;
} }
try try

View File

@ -23,7 +23,7 @@ namespace IndianHealthService.ClinicalScheduling
private static CGDocumentManager _current; private static CGDocumentManager _current;
private Hashtable _views = new Hashtable(); private Hashtable _views = new Hashtable();
private Hashtable m_AVViews = new Hashtable(); private Hashtable m_AVViews = new Hashtable();
private string m_sWindowText = "IHS Clinical Scheduling"; //Default Window Text private string m_sWindowText = "Clinical Scheduling"; //Default Window Text
private bool m_bSchedManager; private bool m_bSchedManager;
private bool m_bExitOK = true; private bool m_bExitOK = true;
public string m_sHandle = "0"; public string m_sHandle = "0";
@ -931,7 +931,7 @@ namespace IndianHealthService.ClinicalScheduling
sMsg = "Scheduling System Shutting Down Immediately for Maintenance."; sMsg = "Scheduling System Shutting Down Immediately for Maintenance.";
} }
MessageBox.Show(sMsg, "IHS Clinical Scheduling Administrator -- System Shutdown Notification", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(sMsg, "Clinical Scheduling Administrator -- System Shutdown Notification", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
CloseAll(); CloseAll();
} }

View File

@ -1438,7 +1438,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to edit availability for " + m_sDocName + " schedule. " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to edit availability for " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling");
this.m_DocManager.CloseAllViews(doc); this.m_DocManager.CloseAllViews(doc);
return; return;
} }
@ -1480,7 +1480,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling");
this.m_DocManager.CloseAllViews(doc); this.m_DocManager.CloseAllViews(doc);
return; return;
} }
@ -1614,7 +1614,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to open " + m_sDocName + " schedule. " + ex.Message, "Clinical Scheduling");
this.m_DocManager.CloseAllViews(doc); this.m_DocManager.CloseAllViews(doc);
return; return;
} }
@ -1687,7 +1687,7 @@ namespace IndianHealthService.ClinicalScheduling
&& &&
(a.StartTime.Date > DateTime.Today.Date) (a.StartTime.Date > DateTime.Today.Date)
&& &&
(MessageBox.Show(this, "The appointment for " + a.PatientName + " is in the future. Are you sure you want to No-Show?", "IHS Windows Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK)) (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))
{ {
} }
else else
@ -1701,7 +1701,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to mark appointment No Show: " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to mark appointment No Show: " + ex.Message, "Clinical Scheduling");
} }
if (bRebook == true) if (bRebook == true)
{ {
@ -1866,7 +1866,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to delete appointment. " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to delete appointment. " + ex.Message, "Clinical Scheduling");
} }
} }
@ -1908,7 +1908,7 @@ namespace IndianHealthService.ClinicalScheduling
&& &&
(a.StartTime.Date > DateTime.Today.Date)) (a.StartTime.Date > DateTime.Today.Date))
{ {
MessageBox.Show(this, "It is too early to check in " + a.PatientName, "IHS Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, "It is too early to check in " + a.PatientName, "Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
return; return;
} }
//Find the default provider for the resource & load into combo box //Find the default provider for the resource & load into combo box
@ -1990,7 +1990,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Error checking in patient: " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Error checking in patient: " + ex.Message, "Clinical Scheduling");
} }
if (bDeleted == true) if (bDeleted == true)
@ -2032,7 +2032,7 @@ namespace IndianHealthService.ClinicalScheduling
if (dStart.Date > DateTime.Today.Date) if (dStart.Date > DateTime.Today.Date)
{ {
MessageBox.Show(this, "You cannot create a walk-in appointment for a date in the future.\n Select today's date and try again.", "IHS Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); 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);
return; return;
} }
@ -2046,7 +2046,7 @@ namespace IndianHealthService.ClinicalScheduling
if (m_nSlots < 1) if (m_nSlots < 1)
{ {
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "IHS Clinical Scheduling",MessageBoxButtons.YesNo); 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);
if (dr != DialogResult.Yes) if (dr != DialogResult.Yes)
{ {
return; return;
@ -2082,7 +2082,7 @@ namespace IndianHealthService.ClinicalScheduling
if (m_nSlots < 1) if (m_nSlots < 1)
{ {
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "IHS Clinical Scheduling",MessageBoxButtons.YesNo); 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);
if (dr != DialogResult.Yes) if (dr != DialogResult.Yes)
{ {
return; return;
@ -2109,7 +2109,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to add walk-in appointment " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to add walk-in appointment " + ex.Message, "Clinical Scheduling");
return; return;
} }
@ -2138,7 +2138,7 @@ namespace IndianHealthService.ClinicalScheduling
string sHoliday = ""; string sHoliday = "";
DataRowView drv = dvHoliday[nFind]; DataRowView drv = dvHoliday[nFind];
sHoliday = drv["NAME"].ToString(); sHoliday = drv["NAME"].ToString();
if (MessageBox.Show(this, dStart.ToShortDateString() + " is a holiday (" + sHoliday + "). Are you sure you want to make this appointment?","IHS Clinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) != DialogResult.OK) 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)
return; return;
} }
@ -2157,7 +2157,7 @@ namespace IndianHealthService.ClinicalScheduling
if (m_nSlots < 1) if (m_nSlots < 1)
{ {
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "IHS Clinical Scheduling",MessageBoxButtons.YesNo); 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);
if (dr != DialogResult.Yes) if (dr != DialogResult.Yes)
{ {
return; return;
@ -2206,7 +2206,7 @@ namespace IndianHealthService.ClinicalScheduling
if (m_nSlots < 1) if (m_nSlots < 1)
{ {
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "IHS Clinical Scheduling",MessageBoxButtons.YesNo); 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);
if (dr != DialogResult.Yes) if (dr != DialogResult.Yes)
{ {
return; return;
@ -2218,7 +2218,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to add new appointment " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to add new appointment " + ex.Message, "Clinical Scheduling");
return; return;
} }
@ -2242,7 +2242,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to refresh document " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to refresh document " + ex.Message, "Clinical Scheduling");
} }
finally finally
{ {
@ -2263,7 +2263,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to update arrays " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to update arrays " + ex.Message, "Clinical Scheduling");
} }
} }
@ -2308,7 +2308,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Scheduling Management Error: " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Scheduling Management Error: " + ex.Message, "Clinical Scheduling");
} }
} }
@ -2336,7 +2336,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -2391,7 +2391,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -2665,7 +2665,7 @@ namespace IndianHealthService.ClinicalScheduling
{ {
if (e.Appointment.CheckInTime.Ticks > 0) if (e.Appointment.CheckInTime.Ticks > 0)
{ {
MessageBox.Show("You cannot change the appointment time because the patient has already checked in.", "IHS Clinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); MessageBox.Show("You cannot change the appointment time because the patient has already checked in.", "Clinical Scheduling", MessageBoxButtons.OKCancel, MessageBoxIcon.Information);
return; return;
} }
@ -2674,7 +2674,7 @@ namespace IndianHealthService.ClinicalScheduling
if (EditAppointmentEnabled(e.Appointment.Resource) == false) if (EditAppointmentEnabled(e.Appointment.Resource) == false)
return; return;
if (MessageBox.Show("Are you sure you want to move this appointment?", "IHS Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes) if (MessageBox.Show("Are you sure you want to move this appointment?", "Clinical Scheduling", MessageBoxButtons.YesNo) != DialogResult.Yes)
return; return;
//20040909 Cherokee Replaced this block with following //20040909 Cherokee Replaced this block with following
@ -2707,7 +2707,7 @@ namespace IndianHealthService.ClinicalScheduling
*/ */
if (bSlotsAvailable == false) if (bSlotsAvailable == false)
{ {
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "IHS Clinical Scheduling",MessageBoxButtons.YesNo); 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);
if (dr != DialogResult.Yes) if (dr != DialogResult.Yes)
{ {
return; return;
@ -2730,7 +2730,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to change appointment " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to change appointment " + ex.Message, "Clinical Scheduling");
this.m_DocManager.UpdateViews(); this.m_DocManager.UpdateViews();
return; return;
} }
@ -2783,12 +2783,12 @@ namespace IndianHealthService.ClinicalScheduling
private void mnuHelpAbout_Click(object sender, System.EventArgs e) private void mnuHelpAbout_Click(object sender, System.EventArgs e)
{ {
MessageBox.Show("IHS Clinical Scheduling Version " + Application.ProductVersion, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information); MessageBox.Show("Clinical Scheduling Version " + Application.ProductVersion, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information);
} }
private void ImplementMsg() private void ImplementMsg()
{ {
MessageBox.Show("IHS Clinical Scheduling", "TODO: Implement this function"); MessageBox.Show("Clinical Scheduling", "TODO: Implement this function");
} }
private void mnuClose_Click(object sender, System.EventArgs e) private void mnuClose_Click(object sender, System.EventArgs e)
@ -2894,7 +2894,7 @@ namespace IndianHealthService.ClinicalScheduling
*/ */
if (bSlotsAvailable == false) if (bSlotsAvailable == false)
{ {
DialogResult dr = MessageBox.Show(this, "There are no slots available at the selected time. Do you want to overbook this appointment?", "IHS Clinical Scheduling",MessageBoxButtons.YesNo); 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);
if (dr != DialogResult.Yes) if (dr != DialogResult.Yes)
{ {
return; return;
@ -2909,7 +2909,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show("Unable to add new appointment " + ex.Message, "IHS Clinical Scheduling"); MessageBox.Show("Unable to add new appointment " + ex.Message, "Clinical Scheduling");
return; return;
} }
try try
@ -2953,7 +2953,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch(Exception ex) catch(Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -2979,7 +2979,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch(Exception ex) catch(Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -3013,7 +3013,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch(Exception ex) catch(Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -3073,7 +3073,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch(Exception ex) catch(Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -3117,7 +3117,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch(Exception ex) catch(Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }

View File

@ -671,7 +671,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }
@ -698,7 +698,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }

View File

@ -2270,7 +2270,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch(Exception ex) catch(Exception ex)
{ {
MessageBox.Show(this,ex.Message,"IHS Clinical Scheduling"); MessageBox.Show(this,ex.Message,"Clinical Scheduling");
} }
} }
@ -2367,7 +2367,7 @@ namespace IndianHealthService.ClinicalScheduling
{ {
string sMessage; string sMessage;
dInputText dlg = new dInputText(); dInputText dlg = new dInputText();
dlg.DialogTitle = "IHS Clinical Scheduling - Send Message to Scheduling Clients."; dlg.DialogTitle = "Clinical Scheduling - Send Message to Scheduling Clients.";
if (dlg.ShowDialog(this) != DialogResult.OK) if (dlg.ShowDialog(this) != DialogResult.OK)
return; return;
@ -2382,7 +2382,7 @@ namespace IndianHealthService.ClinicalScheduling
private void cmdWorkStationsShutdown_Click(object sender, System.EventArgs e) private void cmdWorkStationsShutdown_Click(object sender, System.EventArgs e)
{ {
if (MessageBox.Show("Are you sure you want to shut down all IHS Clincal Scheduling clients?" ,"IHS Clinical Scheduling Client Shutdown", MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes) 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)
{ {
return; return;
} }

View File

@ -266,7 +266,7 @@ namespace IndianHealthService.ClinicalScheduling
} }
catch (Exception ex) catch (Exception ex)
{ {
MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
} }
} }

View File

@ -67,7 +67,7 @@ namespace IndianHealthService.ClinicalScheduling
this.label1.Name = "label1"; this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(448, 40); this.label1.Size = new System.Drawing.Size(448, 40);
this.label1.TabIndex = 0; this.label1.TabIndex = 0;
this.label1.Text = "IHS Clinical Scheduling"; this.label1.Text = "Clinical Scheduling";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
// //
// lblVersion // lblVersion
@ -110,7 +110,7 @@ namespace IndianHealthService.ClinicalScheduling
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.Name = "DSplash"; this.Name = "DSplash";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "IHS Clinical Scheduling"; this.Text = "Clinical Scheduling";
this.Load += new System.EventHandler(this.DSplash_Load); this.Load += new System.EventHandler(this.DSplash_Load);
this.ResumeLayout(false); this.ResumeLayout(false);

File diff suppressed because it is too large Load Diff

View File

@ -1,24 +0,0 @@
<?xml version="1.0"?>
<configuration>
<appSettings>
<!-- User application and configured property settings go here.-->
<!-- Example: <add key="settingName" value="settingValue"/> -->
<add key="mnuNewAppointment.Enabled" value="True" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
<startup>
<supportedRuntime version="v2.0.50727" />
</startup>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</configuration>

View File

@ -1,24 +0,0 @@
<?xml version="1.0"?>
<configuration>
<appSettings>
<!-- User application and configured property settings go here.-->
<!-- Example: <add key="settingName" value="settingValue"/> -->
<add key="mnuNewAppointment.Enabled" value="True" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
<startup>
<supportedRuntime version="v2.0.50727" />
</startup>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</configuration>

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>

View File

@ -126,7 +126,7 @@ namespace IndianHealthService.ClinicalScheduling
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "dInputText"; this.Name = "dInputText";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "IHS Clinical Scheduling"; this.Text = "Clinical Scheduling";
this.pnlPageBottom.ResumeLayout(false); this.pnlPageBottom.ResumeLayout(false);
this.ResumeLayout(false); this.ResumeLayout(false);