public f_Cancel_Appointment(a_Identification_Home homeForm, c_Patient_Information previousForm)
        {
            InitializeComponent();

            //POINT TO THE HOME FORM
            pointerToHomeForm = homeForm;

            //POINT TO PREVIOUS FORM
            pointerToPreviousForm = previousForm;

            //Initialise date and time
            timer3.Enabled = true;

            //Reset idle timer
            resetTimer();
        }
        public b_Identification_ListSelect(String dob, a_Identification_Home homeForm)
        {
            InitializeComponent();

            //SHOW THE DOB SELECTED FROM THE PREVIOUS FORM
            birthDateSelected.Text = dob;

            //Hide the Home page
            homeForm.Hide();
            pointerToHomeForm = homeForm;

            //DISABLE CONFIRM UNTILL IT IS SELECTED FROM LIST
            confirmButton.Enabled = false;

            //Initialise date and time
            timer3.Enabled = true;

            //Reset idle timer
            resetTimer();
        }
        public d_Review_Appointment(a_Identification_Home homeForm, c_Patient_Information previousForm)
        {
            InitializeComponent();

            //POINT TO THE HOME FORM
            pointerToHomeForm = homeForm;

            //POINT TO PREVIOUS FORM
            pointerToPreviousForm = previousForm;

            //Initialise date and time
            timer3.Enabled = true;

            //Reset idle timer
            resetTimer();

            appDate3.Lines = date;

            confirmPhAttButton2.Enabled = false;
        }