private void AdicionarToolStripMenuItem_Click(object sender, EventArgs e) { clsConnection.intCodigoOfertaSimle = 0; frmAdminOfertaSimple adminOfertaSimple = new frmAdminOfertaSimple(); adminOfertaSimple.Show(); }
private void dtgOfertaSimples_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { int filaSeleccionada = dtgOfertaSimples.SelectedRows[0].Index; clsConnection.intCodigoOfertaSimle = Convert.ToInt32(dtgOfertaSimples.Rows[filaSeleccionada].Cells[0].Value); frmAdminOfertaSimple adminOfertaSimple = new frmAdminOfertaSimple(); adminOfertaSimple.Show(); }
private void EditarToolStripMenuItem_Click(object sender, EventArgs e) { try { int filaSeleccionada = dtgOfertaSimples.SelectedRows[0].Index; clsConnection.intCodigoOfertaSimle = Convert.ToInt32(dtgOfertaSimples.Rows[filaSeleccionada].Cells[0].Value); frmAdminOfertaSimple adminOfertaSimple = new frmAdminOfertaSimple(); adminOfertaSimple.Show(); } catch (Exception ex) { } }