diff --git a/cs/bsdx0200GUISourceCode/AssemblyInfo.cs b/cs/bsdx0200GUISourceCode/AssemblyInfo.cs index 2326943..936ef17 100644 --- a/cs/bsdx0200GUISourceCode/AssemblyInfo.cs +++ b/cs/bsdx0200GUISourceCode/AssemblyInfo.cs @@ -7,7 +7,7 @@ using System.Runtime.CompilerServices; // associated with an assembly. // [assembly: AssemblyTitle("ClinicalScheduling")] -[assembly: AssemblyDescription("IHS Windows Scheduling Application")] +[assembly: AssemblyDescription("Windows Scheduling Application")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Indian Health Service")] [assembly: AssemblyProduct("")] diff --git a/cs/bsdx0200GUISourceCode/CGAVDocument.cs b/cs/bsdx0200GUISourceCode/CGAVDocument.cs index 5e8c5a4..bbc9cb2 100644 --- a/cs/bsdx0200GUISourceCode/CGAVDocument.cs +++ b/cs/bsdx0200GUISourceCode/CGAVDocument.cs @@ -170,7 +170,7 @@ namespace IndianHealthService.ClinicalScheduling DateTime sEnd2 = 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; } } @@ -294,7 +294,7 @@ namespace IndianHealthService.ClinicalScheduling if (CGSchedLib.TimesOverlap(aCopy.StartTime, aCopy.EndTime, a.StartTime, a.EndTime)) { // 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; } diff --git a/cs/bsdx0200GUISourceCode/CGAVView.cs b/cs/bsdx0200GUISourceCode/CGAVView.cs index 57536f5..c6841a8 100644 --- a/cs/bsdx0200GUISourceCode/CGAVView.cs +++ b/cs/bsdx0200GUISourceCode/CGAVView.cs @@ -661,7 +661,7 @@ namespace IndianHealthService.ClinicalScheduling } 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; } try @@ -695,7 +695,7 @@ namespace IndianHealthService.ClinicalScheduling DateTime sEnd2 = 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; } } @@ -720,7 +720,7 @@ namespace IndianHealthService.ClinicalScheduling } 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; } try @@ -741,7 +741,7 @@ namespace IndianHealthService.ClinicalScheduling if (calendarGrid1.SelectedAppointments.AppointmentTable.Count > 1) 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; return; @@ -760,7 +760,7 @@ namespace IndianHealthService.ClinicalScheduling } 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) @@ -809,7 +809,7 @@ namespace IndianHealthService.ClinicalScheduling } 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); - 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; m_Document.ChangeAppointmentTime(e.Appointment, e.StartTime, e.EndTime, e.Resource); @@ -893,7 +893,7 @@ namespace IndianHealthService.ClinicalScheduling } 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(); return; } @@ -957,12 +957,12 @@ namespace IndianHealthService.ClinicalScheduling 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() { - 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) @@ -1059,7 +1059,7 @@ namespace IndianHealthService.ClinicalScheduling } 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 // 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) { - 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) { - 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; } try diff --git a/cs/bsdx0200GUISourceCode/CGDocumentManager.cs b/cs/bsdx0200GUISourceCode/CGDocumentManager.cs index 4c8795b..928dd44 100644 --- a/cs/bsdx0200GUISourceCode/CGDocumentManager.cs +++ b/cs/bsdx0200GUISourceCode/CGDocumentManager.cs @@ -23,7 +23,7 @@ namespace IndianHealthService.ClinicalScheduling private static CGDocumentManager _current; private Hashtable _views = 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_bExitOK = true; public string m_sHandle = "0"; @@ -931,7 +931,7 @@ namespace IndianHealthService.ClinicalScheduling 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(); } diff --git a/cs/bsdx0200GUISourceCode/CGView.cs b/cs/bsdx0200GUISourceCode/CGView.cs index d13fc4d..1e99f74 100644 --- a/cs/bsdx0200GUISourceCode/CGView.cs +++ b/cs/bsdx0200GUISourceCode/CGView.cs @@ -1438,7 +1438,7 @@ namespace IndianHealthService.ClinicalScheduling } 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); return; } @@ -1480,7 +1480,7 @@ namespace IndianHealthService.ClinicalScheduling } 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); return; } @@ -1614,7 +1614,7 @@ namespace IndianHealthService.ClinicalScheduling } 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); return; } @@ -1687,7 +1687,7 @@ namespace IndianHealthService.ClinicalScheduling && (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 @@ -1701,7 +1701,7 @@ namespace IndianHealthService.ClinicalScheduling } 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) { @@ -1866,7 +1866,7 @@ namespace IndianHealthService.ClinicalScheduling } 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)) { - 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; } //Find the default provider for the resource & load into combo box @@ -1990,7 +1990,7 @@ namespace IndianHealthService.ClinicalScheduling } 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) @@ -2032,7 +2032,7 @@ namespace IndianHealthService.ClinicalScheduling 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; } @@ -2046,7 +2046,7 @@ namespace IndianHealthService.ClinicalScheduling 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) { return; @@ -2082,7 +2082,7 @@ namespace IndianHealthService.ClinicalScheduling 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) { return; @@ -2109,7 +2109,7 @@ namespace IndianHealthService.ClinicalScheduling } 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; } @@ -2138,7 +2138,7 @@ namespace IndianHealthService.ClinicalScheduling string sHoliday = ""; DataRowView drv = dvHoliday[nFind]; 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; } @@ -2157,7 +2157,7 @@ namespace IndianHealthService.ClinicalScheduling 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) { return; @@ -2206,7 +2206,7 @@ namespace IndianHealthService.ClinicalScheduling 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) { return; @@ -2218,7 +2218,7 @@ namespace IndianHealthService.ClinicalScheduling } 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; } @@ -2242,7 +2242,7 @@ namespace IndianHealthService.ClinicalScheduling } 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 { @@ -2263,7 +2263,7 @@ namespace IndianHealthService.ClinicalScheduling } 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) { - 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) { - 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) { - 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) { - 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; } @@ -2674,7 +2674,7 @@ namespace IndianHealthService.ClinicalScheduling if (EditAppointmentEnabled(e.Appointment.Resource) == false) 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; //20040909 Cherokee Replaced this block with following @@ -2707,7 +2707,7 @@ namespace IndianHealthService.ClinicalScheduling */ 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) { return; @@ -2730,7 +2730,7 @@ namespace IndianHealthService.ClinicalScheduling } 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(); return; } @@ -2783,12 +2783,12 @@ namespace IndianHealthService.ClinicalScheduling 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() { - 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) @@ -2894,7 +2894,7 @@ namespace IndianHealthService.ClinicalScheduling */ 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) { return; @@ -2909,7 +2909,7 @@ namespace IndianHealthService.ClinicalScheduling } 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; } try @@ -2953,7 +2953,7 @@ namespace IndianHealthService.ClinicalScheduling } 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) { - 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) { - 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) { - 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) { - MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } diff --git a/cs/bsdx0200GUISourceCode/ClinicalScheduling.suo b/cs/bsdx0200GUISourceCode/ClinicalScheduling.suo index 4b0189e..3c9155d 100644 Binary files a/cs/bsdx0200GUISourceCode/ClinicalScheduling.suo and b/cs/bsdx0200GUISourceCode/ClinicalScheduling.suo differ diff --git a/cs/bsdx0200GUISourceCode/DAppointPage.cs b/cs/bsdx0200GUISourceCode/DAppointPage.cs index 2d154cf..0eb35d0 100644 --- a/cs/bsdx0200GUISourceCode/DAppointPage.cs +++ b/cs/bsdx0200GUISourceCode/DAppointPage.cs @@ -671,7 +671,7 @@ namespace IndianHealthService.ClinicalScheduling } 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) { - MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); + MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } diff --git a/cs/bsdx0200GUISourceCode/DManagement.cs b/cs/bsdx0200GUISourceCode/DManagement.cs index 9568985..b651646 100644 --- a/cs/bsdx0200GUISourceCode/DManagement.cs +++ b/cs/bsdx0200GUISourceCode/DManagement.cs @@ -2270,7 +2270,7 @@ namespace IndianHealthService.ClinicalScheduling } 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; 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) return; @@ -2382,7 +2382,7 @@ namespace IndianHealthService.ClinicalScheduling 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; } diff --git a/cs/bsdx0200GUISourceCode/DPatientLookup.cs b/cs/bsdx0200GUISourceCode/DPatientLookup.cs index e6f290e..89bfe5d 100644 --- a/cs/bsdx0200GUISourceCode/DPatientLookup.cs +++ b/cs/bsdx0200GUISourceCode/DPatientLookup.cs @@ -266,7 +266,7 @@ namespace IndianHealthService.ClinicalScheduling } 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); } } diff --git a/cs/bsdx0200GUISourceCode/DSplash.cs b/cs/bsdx0200GUISourceCode/DSplash.cs index f75afa4..c5d0a91 100644 --- a/cs/bsdx0200GUISourceCode/DSplash.cs +++ b/cs/bsdx0200GUISourceCode/DSplash.cs @@ -67,7 +67,7 @@ namespace IndianHealthService.ClinicalScheduling this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(448, 40); this.label1.TabIndex = 0; - this.label1.Text = "IHS Clinical Scheduling"; + this.label1.Text = "Clinical Scheduling"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // lblVersion @@ -110,7 +110,7 @@ namespace IndianHealthService.ClinicalScheduling this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D; this.Name = "DSplash"; 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.ResumeLayout(false); diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/BMXNet20.dll b/cs/bsdx0200GUISourceCode/bin/Debug/BMXNet20.dll deleted file mode 100644 index 5f4c0c2..0000000 Binary files a/cs/bsdx0200GUISourceCode/bin/Debug/BMXNet20.dll and /dev/null differ diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/CalendarGrid.dll b/cs/bsdx0200GUISourceCode/bin/Debug/CalendarGrid.dll deleted file mode 100644 index 5765ace..0000000 Binary files a/cs/bsdx0200GUISourceCode/bin/Debug/CalendarGrid.dll and /dev/null differ diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.XML b/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.XML deleted file mode 100644 index 7926d68..0000000 --- a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.XML +++ /dev/null @@ -1,1087 +0,0 @@ - - - - ClinicalScheduling - - - - - Represents a strongly typed in-memory cache of data. - - - - - Represents the strongly named DataTable class. - - - - - Represents the strongly named DataTable class. - - - - - Represents strongly named DataRow class. - - - - - Represents strongly named DataRow class. - - - - - Row event argument class - - - - - Row event argument class - - - - - Summary description for DApptSearch. - - - - - Required designer variable. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Gets the resource selected by the user - - - - - Gets the date selected by the user - - - - - Summary description for DocumentManager. - - - - - Clean up any resources being used. - - - - - Return the first view having a resource array matching sResourceArray - - - - - - - Propogate availability updates to all sRresource's doc/views - - - - - Propogate availability updates to all doc/views - - - - - Calls each view associated with document Doc and closes it. - - - - - Calls each view associated with Availability Doc and closes it. - - - - - Returns the document manager's BMXNetConnectInfo member - - - - - True if the current user holds the BSDXZMGR or XUPROGMODE keys in RPMS - - - - - Holds the user and division - - - - - This dataset contains tables used by the entire application - - - - - Returns the single CGDocumentManager object - - - - - Returns the list of currently opened documents - - - - - Returns the list of currently opened CGAVViews - - - - - Summary description for DAccessTemplate. - - - - - Required designer variable. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Returns the open file dialog object - - - - - Sets or returns the start date to apply the template - - - - - Sets or returns the number of weeks to apply the template - - - - - Summary description for CGView. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Clean up any resources being used. - - - - - Marks all selected appointments as No Show - - - - - - - Delete appointment ApptID - - - - - - - Delete all selected appointments - - - - - Access the CalendarGrid associated with this view - - - - - Accesses the document associated with this view - - - - - Summary description for dInputText. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Summary description for DResource. - - - - - Required designer variable. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Clean up any resources being used. - - - - - CGSchedLib contains static functions that are called from throughout the - scheduling application. - - - - - Represents a strongly typed in-memory cache of data. - - - - - Represents the strongly named DataTable class. - - - - - Represents the strongly named DataTable class. - - - - - Represents strongly named DataRow class. - - - - - Represents strongly named DataRow class. - - - - - Row event argument class - - - - - Row event argument class - - - - - Summary description for DAccessGroup. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Gets the name of the Access Group; - - - - - Summary description for DSplash. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Gets or sets the value of the Status displayed on the splash screen - - - - - Summary description for DPatientApptDisplay. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Appointment Info Dialog - - - - - Required designer variable. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Move data from member variables to controls (b == true) - or from controls to member variables (b == false) - - - - - - Clean up any resources being used. - - - - - Summary description for DAccessType. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Contains the array of appointments and availabily that make up the document class - - - - - Update schedule based on info in RPMS - - - - - Given a selected date, - Calculates StartDay and End Day and returns them in output params. - nWeeks == number of Weeks to display - nColumnCount is number of days displayed per week. If 5 columns, begin on - Monday, if 7 Columns, begin on Sunday - - Returns TRUE if the document's data needs refreshing based on - this newly selected date. - - - - - Calls RPMS to create appointment then - adds appointment to the m_appointments collection - Returns the IEN of the appointment in the RPMS BSDX APPOINTMENT file. - - - - - - - Use this overload to create a walkin appointment - - - - - - - - Returns the latest refresh time for this document - - - - - The list of Resource names - - - - - The array of CGAvailabilities that contains appt type and slots - - - - - Contains the hashtable of appointments - - - - - Holds the date selected by the user in CGView.dateTimePicker1 - - - - - Contains the beginning date of the appointment document - - - - - Summary description for DManagement. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Summary description for DSelectLetterClinics. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Returns the |-delimited string of selected resource id's - - - - - Summary description for DCancelAppt. - - - - - Required designer variable. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Sets or returns the rebook access type: -1 = use current type, -2 = use any type, 0 = prompt for a type - - - - - Returns true if appt cancelled by Clinic, otherwise false - - - - - Returns value of AutoRebook check box - - - - - Returns internal entry in the CANCELLATION REASON file (409.2) - - - - - Returns cancellation remarks. - - - - - Sets or returns the number of days in the future to start searching for availability - - - - - Sets and returns the maximum number of days in the future to look for rebook availability - - - - - Summary description for DPatientLookup. - - - - - Required designer variable. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Clean up any resources being used. - - - - - Gets or sets the name of the selected patient - - - - - RPMS Internal Entry Number in PATIENT file (DFN) - - - - - The string representation of the Health Record Number - - - - - Summary description for DPatientLetter. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Summary description for DCopyAppts. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Summary description for DCheckIn. - - - - - Required designer variable. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Returns string representation of internal entry number of Provider in PROVIDER File - - - - - Returns string representation of IEN of Clinic in VEN EHP CLINIC file - - - - - Returns string representation of IEN of template entry in VEN PCC TEMPLATE - - - - - Returns 'true' if outguide to be printed; otherwise returns 'false' - - - - - Returns string representation of IEN of CLINIC STOP - - - - - Returns 'true' if routing slip to be printed; otherwise 'false' - - - - - Appointment checkin time - - - - - Appointment end time - - - - - Summary description for DResourceGroup. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Gets the name of the resource group - - - - - Summary description for DAccessGroupItem. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Contains the IEN of the AccessType in the BSDX_ACCESS_TYPE file - - - - - Contains the name of the AccessType - - - - - Summary description for DSelectSchedules. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Returns the an ArrayList of selected resource names - - - - - Summary description for CGAVView. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Clean up any resources being used. - - - - - Access the CalendarGrid associated with this view - - - - - Accesses the document associated with this view - - - - - Summary description for DResourceGroup. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Contains the IEN of the Resource in the BSDX_RESOURCE file - - - - - Contains the name of the Resource - - - - - Summary description for DAutoRebook. - - - - - Required designer variable. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - Sets or returns the rebook access type: -1 = use current type, -2 = use any type, 0 = prompt for a type - - - - - Returns value of AutoRebook check box - - - - - Sets or returns the number of days in the future to start searching for availability - - - - - Sets and returns the maximum number of days in the future to look for rebook availability - - - - - Summary description for DResourceUser. - - - - - Required designer variable. - - - - - Clean up any resources being used. - - - - - Required method for Designer support - do not modify - the contents of this method with the code editor. - - - - - If b is true, moves member vars into control data - otherwise, moves control data into member vars - - - - - - The ID of the Resource User in the NEW PERSON file. - - - - - True if the user is allowed to modify the resource's scheduled availability - - - - - True if the user is allowed to overbook beyond the resource's scheduled availability - - - - - True if the user is allowed to create, edit and delete appointments - - - - - Contains array of availability blocks for a scheduling resource - - - - - Called by LoadTemplate to create Access Block - Returns the IEN of the availability block in the RPMS BSDX AVAILABILITY file. - - - - - Update availability block schedule based on info in RPMS - - - - - Given a selected date, - Calculates StartDay and End Day and returns them in output params. - nWeeks == number of Weeks to display - nColumnCount is number of days displayed per week. If 5 columns, begin on - Monday, if 7 Columns, begin on Sunday - - Returns TRUE if the document's data needs refreshing based on - this newly selected date. - - - - - Calls each AVview associated with this AVdocument and tells it to update itself - - - - - Resource IEN in ^BSDXRES - - - - - The list of Resource names - - - - - Contains the hashtable of Availability Blocks - - - - - Holds the date selected by the user in CGView.dateTimePicker1 - - - - - Contains the beginning date of the appointment document - - - - diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.exe b/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.exe deleted file mode 100644 index 4d1ca53..0000000 Binary files a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.exe and /dev/null differ diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.exe.config b/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.exe.config deleted file mode 100644 index e08ba20..0000000 --- a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.exe.config +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.pdb b/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.pdb deleted file mode 100644 index 00c604f..0000000 Binary files a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.pdb and /dev/null differ diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe b/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe deleted file mode 100644 index 14041ba..0000000 Binary files a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe and /dev/null differ diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe.config b/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe.config deleted file mode 100644 index e08ba20..0000000 --- a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe.config +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe.manifest b/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe.manifest deleted file mode 100644 index f96b1d6..0000000 --- a/cs/bsdx0200GUISourceCode/bin/Debug/ClinicalScheduling.vshost.exe.manifest +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/cs/bsdx0200GUISourceCode/bin/Release/ClinicalScheduling.exe b/cs/bsdx0200GUISourceCode/bin/Release/ClinicalScheduling.exe index fd65d11..1d2908c 100644 Binary files a/cs/bsdx0200GUISourceCode/bin/Release/ClinicalScheduling.exe and b/cs/bsdx0200GUISourceCode/bin/Release/ClinicalScheduling.exe differ diff --git a/cs/bsdx0200GUISourceCode/dInputText.cs b/cs/bsdx0200GUISourceCode/dInputText.cs index 3f5d149..00f1957 100644 --- a/cs/bsdx0200GUISourceCode/dInputText.cs +++ b/cs/bsdx0200GUISourceCode/dInputText.cs @@ -126,7 +126,7 @@ namespace IndianHealthService.ClinicalScheduling this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "dInputText"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "IHS Clinical Scheduling"; + this.Text = "Clinical Scheduling"; this.pnlPageBottom.ResumeLayout(false); this.ResumeLayout(false); diff --git a/cs/bsdx0200GUISourceCode/obj/Release/ClinicalScheduling.exe b/cs/bsdx0200GUISourceCode/obj/Release/ClinicalScheduling.exe index fd65d11..1d2908c 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/ClinicalScheduling.exe and b/cs/bsdx0200GUISourceCode/obj/Release/ClinicalScheduling.exe differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.CGDocumentManager.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.CGDocumentManager.resources index edd4c68..5aa0aba 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.CGDocumentManager.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.CGDocumentManager.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessGroup.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessGroup.resources index 0d8fadc..b7bbc4a 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessGroup.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessGroup.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessTemplate.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessTemplate.resources index 7d4acea..c289cec 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessTemplate.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessTemplate.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessType.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessType.resources index b4a94d2..439aae2 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessType.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DAccessType.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DApptSearch.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DApptSearch.resources index 5bd6e59..74caadd 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DApptSearch.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DApptSearch.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCancelAppt.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCancelAppt.resources index ef8e8a5..915db2b 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCancelAppt.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCancelAppt.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCheckIn.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCheckIn.resources index 45017ad..f327d76 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCheckIn.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCheckIn.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCopyAppts.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCopyAppts.resources index 71fd90d..c1b441c 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCopyAppts.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DCopyAppts.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DNoShow.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DNoShow.resources index fd19359..84747fc 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DNoShow.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DNoShow.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientApptDisplay.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientApptDisplay.resources index 27d8ebd..9e9d227 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientApptDisplay.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientApptDisplay.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientLetter.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientLetter.resources index f9c4771..66387f9 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientLetter.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientLetter.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientLookup.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientLookup.resources index 32dff3e..0797335 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientLookup.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DPatientLookup.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResource.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResource.resources index 9a6424f..f051cd8 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResource.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResource.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResourceGroup.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResourceGroup.resources index df0a722..927a0de 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResourceGroup.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResourceGroup.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResourceUser.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResourceUser.resources index fc62f6b..d517d24 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResourceUser.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DResourceUser.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DSelectLetterClinics.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DSelectLetterClinics.resources index bf3112f..399bbf8 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DSelectLetterClinics.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DSelectLetterClinics.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DSelectSchedules.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DSelectSchedules.resources index 1acacd3..a939b19 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DSelectSchedules.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.DSelectSchedules.resources differ diff --git a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.dInputText.resources b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.dInputText.resources index b39e2fd..f8218b1 100644 Binary files a/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.dInputText.resources and b/cs/bsdx0200GUISourceCode/obj/Release/IndianHealthService.ClinicalScheduling.dInputText.resources differ