private void GetApplication(string CustID)
        {
            try
            {
                application = ApplicantDB.GetApplication(CustID);

                if (application != null)
                {
                    currentApplicant = application.CustID;
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, ex.GetType().ToString());
            }
        }