private void toolStripButtonEdit_Click(object sender, EventArgs e)
        {
            if (enforceLawGridViewCompanyHighlyToxicChemicals.SelectedRows.Count == 0)
                return;

            if (enforceLawGridViewCompanyHighlyToxicChemicals.SelectedRows[0].Tag == null)
                return;

            UseWaitCursor = true;
            Application.DoEvents();

            try
            {
                CompanyHighlyToxicChemicals CompanyHighlyToxicChemicals = enforceLawGridViewCompanyHighlyToxicChemicals.SelectedRows[0].Tag as CompanyHighlyToxicChemicals;
                CompanyHighlyToxicChemicals.Company = (Company)InvokeUtil.SystemService.EntityInit(new Company { CompanyID = CompanyHighlyToxicChemicals.CompanyID });
                frmCompanyHighlyToxicChemical frm = new frmCompanyHighlyToxicChemical(CompanyHighlyToxicChemicals);
                frm.OpenWindow(this);
            }
            catch (Exception ex)
            {
                CommonInvoke.ErrorMessageBox(ex);
            }

            UseWaitCursor = false;
        }
        private void toolStripButtonAdd_Click(object sender, EventArgs e)
        {
            UseWaitCursor = true;
            Application.DoEvents();

            try
            {
                frmCompanyHighlyToxicChemical frm = new frmCompanyHighlyToxicChemical();
                frm.OpenWindow(this);
            }
            catch (Exception ex)
            {
                CommonInvoke.ErrorMessageBox(ex);
            }

            UseWaitCursor = false;
        }