Ignore:
Timestamp:
Nov 30, 2009, 11:54:57 PM (14 years ago)
Author:
Sam Habiel
Message:

Remove references to IHS; typically "IHS Clinical Scheduling" becomes "Clinical Scheduling"
Deleted Debug folder--no need to version this.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Scheduling/trunk/cs/bsdx0200GUISourceCode/CGView.cs

    r616 r620  
    14391439                        catch (Exception ex)
    14401440                        {
    1441                                 MessageBox.Show("Unable to edit availability for " + m_sDocName + " schedule.  " +  ex.Message, "IHS Clinical Scheduling");
     1441                                MessageBox.Show("Unable to edit availability for " + m_sDocName + " schedule.  " +  ex.Message, "Clinical Scheduling");
    14421442                                this.m_DocManager.CloseAllViews(doc);
    14431443                                return;
     
    14811481                                catch (Exception ex)
    14821482                                {
    1483                                         MessageBox.Show("Unable to open " + m_sDocName + " schedule.  " +  ex.Message, "IHS Clinical Scheduling");
     1483                                        MessageBox.Show("Unable to open " + m_sDocName + " schedule.  " +  ex.Message, "Clinical Scheduling");
    14841484                                        this.m_DocManager.CloseAllViews(doc);
    14851485                                        return;
     
    16151615                        catch (Exception ex)
    16161616                        {
    1617                                 MessageBox.Show("Unable to open " + m_sDocName + " schedule.  " +  ex.Message, "IHS Clinical Scheduling");
     1617                                MessageBox.Show("Unable to open " + m_sDocName + " schedule.  " +  ex.Message, "Clinical Scheduling");
    16181618                                this.m_DocManager.CloseAllViews(doc);
    16191619                                return;
     
    16881688                                                (a.StartTime.Date > DateTime.Today.Date)
    16891689                                                &&
    1690                                                 (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))
     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))
    16911691                                        {
    16921692                                        }
     
    17021702                                catch (Exception ex)
    17031703                                {
    1704                                         MessageBox.Show("Unable to mark appointment No Show: " +  ex.Message, "IHS Clinical Scheduling");
     1704                                        MessageBox.Show("Unable to mark appointment No Show: " +  ex.Message, "Clinical Scheduling");
    17051705                                }
    17061706                                if (bRebook == true)
     
    18671867                                catch (Exception ex)
    18681868                                {
    1869                                         MessageBox.Show("Unable to delete appointment.  " +  ex.Message, "IHS Clinical Scheduling");
     1869                                        MessageBox.Show("Unable to delete appointment.  " +  ex.Message, "Clinical Scheduling");
    18701870                                }
    18711871
     
    19091909                                        (a.StartTime.Date > DateTime.Today.Date))
    19101910                                {
    1911                                         MessageBox.Show(this, "It is too early to check in " + a.PatientName, "IHS Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     1911                                        MessageBox.Show(this, "It is too early to check in " + a.PatientName, "Windows Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    19121912                                        return;
    19131913                                }
     
    19911991                        catch (Exception ex)
    19921992                        {
    1993                                 MessageBox.Show("Error checking in patient:  " +  ex.Message, "IHS Clinical Scheduling");
     1993                                MessageBox.Show("Error checking in patient:  " +  ex.Message, "Clinical Scheduling");
    19941994                        }
    19951995
     
    20332033                                if (dStart.Date > DateTime.Today.Date)
    20342034                                {
    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.", "IHS Windows 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);
    20362036                                        return;
    20372037                                }
     
    20472047                                if (m_nSlots < 1)
    20482048                                {
    2049                                         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);
     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);
    20502050                                        if (dr != DialogResult.Yes)
    20512051                                        {
     
    20832083                                if (m_nSlots < 1)
    20842084                                {
    2085                                         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);
     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);
    20862086                                        if (dr != DialogResult.Yes)
    20872087                                        {
     
    21102110                        catch (Exception ex)
    21112111                        {
    2112                                 MessageBox.Show("Unable to add walk-in appointment  " +  ex.Message, "IHS Clinical Scheduling");
     2112                                MessageBox.Show("Unable to add walk-in appointment  " +  ex.Message, "Clinical Scheduling");
    21132113                                return;
    21142114
     
    21392139                                        DataRowView drv = dvHoliday[nFind];
    21402140                                        sHoliday = drv["NAME"].ToString();
    2141                                         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)
     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)
    21422142                                                return;
    21432143                                }
     
    21582158                                if (m_nSlots < 1)
    21592159                                {
    2160                                         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);
     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);
    21612161                                        if (dr != DialogResult.Yes)
    21622162                                        {
     
    22072207                                if (m_nSlots < 1)
    22082208                                {
    2209                                         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);
     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);
    22102210                                        if (dr != DialogResult.Yes)
    22112211                                        {
     
    22192219                        catch (Exception ex)
    22202220                        {
    2221                                 MessageBox.Show("Unable to add new appointment  " +  ex.Message, "IHS Clinical Scheduling");
     2221                                MessageBox.Show("Unable to add new appointment  " +  ex.Message, "Clinical Scheduling");
    22222222                                return;
    22232223
     
    22432243                        catch (Exception ex)
    22442244                        {
    2245                                 MessageBox.Show("Unable to refresh document " +  ex.Message, "IHS Clinical Scheduling");
     2245                                MessageBox.Show("Unable to refresh document " +  ex.Message, "Clinical Scheduling");
    22462246                        }
    22472247                        finally
     
    22642264                        catch (Exception ex)
    22652265                        {
    2266                                 MessageBox.Show("Unable to update arrays " +  ex.Message, "IHS Clinical Scheduling");
     2266                                MessageBox.Show("Unable to update arrays " +  ex.Message, "Clinical Scheduling");
    22672267                        }
    22682268                }
     
    23092309            catch (Exception ex)
    23102310            {
    2311                 MessageBox.Show("Scheduling Management Error:  " + ex.Message, "IHS Clinical Scheduling");
     2311                MessageBox.Show("Scheduling Management Error:  " + ex.Message, "Clinical Scheduling");
    23122312            }
    23132313        }
     
    23372337            catch (Exception ex)
    23382338            {
    2339                 MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     2339                MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    23402340            }
    23412341        }
     
    23922392            catch (Exception ex)
    23932393            {
    2394                 MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     2394                MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    23952395            }
    23962396        }
     
    26662666                                if (e.Appointment.CheckInTime.Ticks > 0)
    26672667                                {
    2668                                         MessageBox.Show("You cannot change the appointment time because the patient has already checked in.", "IHS Clinical 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);
    26692669                                        return;
    26702670                                }
     
    26752675                                        return;
    26762676
    2677                                 if (MessageBox.Show("Are you sure you want to move this appointment?", "IHS Clinical Scheduling",  MessageBoxButtons.YesNo) != DialogResult.Yes)
     2677                                if (MessageBox.Show("Are you sure you want to move this appointment?", "Clinical Scheduling",  MessageBoxButtons.YesNo) != DialogResult.Yes)
    26782678                                        return;
    26792679
     
    27082708                                if (bSlotsAvailable == false)
    27092709                                {
    2710                                         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);
     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);
    27112711                                        if (dr != DialogResult.Yes)
    27122712                                        {
     
    27312731                        catch (Exception ex)
    27322732                        {
    2733                                 MessageBox.Show("Unable to change appointment  " +  ex.Message, "IHS Clinical Scheduling");
     2733                                MessageBox.Show("Unable to change appointment  " +  ex.Message, "Clinical Scheduling");
    27342734                                this.m_DocManager.UpdateViews();
    27352735                                return;
     
    27842784                private void mnuHelpAbout_Click(object sender, System.EventArgs e)
    27852785                {
    2786                         MessageBox.Show("IHS Clinical Scheduling Version " + Application.ProductVersion, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information); 
     2786                        MessageBox.Show("Clinical Scheduling Version " + Application.ProductVersion, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Information); 
    27872787                }
    27882788
    27892789                private void ImplementMsg()
    27902790                {
    2791                         MessageBox.Show("IHS Clinical Scheduling", "TODO: Implement this function");
     2791                        MessageBox.Show("Clinical Scheduling", "TODO: Implement this function");
    27922792                }
    27932793
     
    28952895                                if (bSlotsAvailable == false)
    28962896                                {
    2897                                         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);
     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);
    28982898                                        if (dr != DialogResult.Yes)
    28992899                                        {
     
    29102910                        catch (Exception ex)
    29112911                        {
    2912                                 MessageBox.Show("Unable to add new appointment  " +  ex.Message, "IHS Clinical Scheduling");
     2912                                MessageBox.Show("Unable to add new appointment  " +  ex.Message, "Clinical Scheduling");
    29132913                                return;
    29142914                        }
     
    29542954                        catch(Exception ex)
    29552955                        {
    2956                                 MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     2956                                MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    29572957                        }
    29582958                }
     
    29802980                        catch(Exception ex)
    29812981                        {
    2982                                 MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     2982                                MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    29832983                        }
    29842984                       
     
    30143014                        catch(Exception ex)
    30153015                        {
    3016                                 MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     3016                                MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    30173017                        }               
    30183018                }
     
    30743074                        catch(Exception ex)
    30753075                        {
    3076                                 MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     3076                                MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    30773077                        }
    30783078
     
    31183118                        catch(Exception ex)
    31193119                        {
    3120                                 MessageBox.Show(this, ex.Message, "IHS Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
     3120                                MessageBox.Show(this, ex.Message, "Clinical Scheduling", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    31213121                        }
    31223122        }
Note: See TracChangeset for help on using the changeset viewer.