public static bool VerifyFormStautsIcon(String eventName, String formName, String icon)
        {
            try
            {
                IControl formCell = null;
                IControl formRow  = GetFormRow(eventName, formName, out formCell);
                IControl formIcon = DL_CRF_PDEP_EventsPage.GetIcon(formCell);

                if (icon.Equals("Mismatch"))
                {
                    bool   found = false;
                    String src   = Control_PropertyUtilities.GetAttributeValue(formIcon, "src", out found);
                    if (found)
                    {
                        return(src.Contains("PDE_mismatch"));
                    }
                }
                if (icon.Equals("Submitted"))
                {
                    bool   found = false;
                    String src   = Control_PropertyUtilities.GetAttributeValue(formIcon, "src", out found);
                    if (found)
                    {
                        return(src.Contains("Doc_S"));
                    }
                }
            }
            catch (Exception e)
            {
                new DebugLogGenerator().WriteException(MethodBase.GetCurrentMethod().DeclaringType.Name, MethodBase.GetCurrentMethod().Name, e);
            }
            return(false);
        }