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();
     }
 }
Exemplo n.º 3
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);
     //provincias1TableAdapter.Fill(promowork_dataDataSet.Provincias1);
     //poblaciones1TableAdapter.Fill(promowork_dataDataSet.Poblaciones1);
     gridView1_FocusedRowChanged(null, null);
 }