Exemplo n.º 1
0
        private void button3_Click(object sender, EventArgs e)
        {
            Poblaciones frm = new Poblaciones();

            frm.ShowDialog();
            provinciasTableAdapter.Fill(promowork_dataDataSet.Provincias);
            poblacionesTableAdapter.Fill(promowork_dataDataSet.Poblaciones);
            empresasDataGridView_CellEnter(null, null);
        }
Exemplo n.º 2
0
 private void poblacionesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (Application.OpenForms["Poblaciones"] != null)
     {
         Application.OpenForms["Poblaciones"].Activate();
     }
     else
     {
         Poblaciones frm = new Poblaciones();
         frm.MdiParent = this;
         frm.Show();
     }
 }