private void grdCuentaContable_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { string sid = grdCuentaContable.Rows[grdCuentaContable.CurrentCell.RowIndex].Cells[0].Value.ToString(); string sNombre = grdCuentaContable.Rows[grdCuentaContable.CurrentCell.RowIndex].Cells[1].Value.ToString(); string sEstadoFinanciero = grdCuentaContable.Rows[grdCuentaContable.CurrentCell.RowIndex].Cells[2].Value.ToString(); string sClasificacion = grdCuentaContable.Rows[grdCuentaContable.CurrentCell.RowIndex].Cells[3].Value.ToString(); frmTipoCuenta temp = new frmTipoCuenta(sid, sNombre, sEstadoFinanciero, sClasificacion); temp.Show(); }
private void btnNuevo_Click(object sender, EventArgs e) { frmTipoCuenta obj = new frmTipoCuenta(); obj.Show(); }