private void gridMain_CellDoubleClick(object sender, ODGridClickEventArgs e) { EhrAmendment ehrAmd = ListAmendments[e.Row]; FormEhrAmendmentEdit FormEAE = new FormEhrAmendmentEdit(ehrAmd); FormEAE.ShowDialog(); FillGrid(); //Always have to refresh grid due to using the images module to update the db. }
private void butAdd_Click(object sender,EventArgs e) { EhrAmendment ehrAmd=new EhrAmendment(); ehrAmd.PatNum=PatCur.PatNum; ehrAmd.IsNew=true; EhrAmendments.Insert(ehrAmd); FormEhrAmendmentEdit FormEAE=new FormEhrAmendmentEdit(ehrAmd); FormEAE.ShowDialog(); FillGrid();//Always have to refresh grid due to using the images module to update the db. }
private void butAdd_Click(object sender, EventArgs e) { EhrAmendment ehrAmd = new EhrAmendment(); ehrAmd.PatNum = PatCur.PatNum; ehrAmd.IsNew = true; EhrAmendments.Insert(ehrAmd); FormEhrAmendmentEdit FormEAE = new FormEhrAmendmentEdit(ehrAmd); FormEAE.ShowDialog(); FillGrid(); //Always have to refresh grid due to using the images module to update the db. }
private void gridMain_CellDoubleClick(object sender,ODGridClickEventArgs e) { EhrAmendment ehrAmd=ListAmendments[e.Row]; FormEhrAmendmentEdit FormEAE=new FormEhrAmendmentEdit(ehrAmd); FormEAE.ShowDialog(); FillGrid();//Always have to refresh grid due to using the images module to update the db. }