Exemplo n.º 1
0
        private void tsbNuevo_Click(object sender, EventArgs e)
        {
            frmCiudad frmciudad = new frmCiudad(Convert.ToInt32(tscbEstados.ComboBox.SelectedValue));

            frmciudad.ShowDialog();

            CargaCiudad();
        }
Exemplo n.º 2
0
        private void tsbEditar_Click(object sender, EventArgs e)
        {
            if (fgCiudades.Row > 0)
            {
                frmCiudad frmciudad = new frmCiudad(Convert.ToInt32(tscbEstados.ComboBox.SelectedValue), Convert.ToInt32(fgCiudades.GetData(fgCiudades.Row, 0)));
                frmciudad.ShowDialog();

                CargaCiudad();
            }
        }