private void dgv_organisation_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            if (e.RowIndex < 0)
            {
                return;
            }

            organisation           org = currentList.ElementAt(e.RowIndex);
            FrmOrganisationDetails frm = new FrmOrganisationDetails(parent, org);

            parent.ForwardTo(frm);
        }
Exemple #2
0
        private void linklbl_orgDetails_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            FrmOrganisationDetails frm = new FrmOrganisationDetails(parent, myOrganisation.id);

            parent.ForwardTo(frm);
        }