Exemplo n.º 1
0
        private void FormRepPorMunicipio_Load(object sender, EventArgs e)
        {
            DataTable datos = new DataTable();

            datos = NMunicipio.ListaMunicipios();
            comboBox1.DataSource    = datos;
            comboBox1.DisplayMember = "Municipio";
            comboBox1.ValueMember   = "Id_Municipio";
        }
Exemplo n.º 2
0
 private void ListaMunicipio()
 {
     try
     {
         DataTable datos = new DataTable();
         datos = NMunicipio.ListaMunicipios();
         comboBox2.DataSource    = datos;
         comboBox2.DisplayMember = "Municipio";
         comboBox2.ValueMember   = "Id_Municipio";
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }
Exemplo n.º 3
0
 private void listarmunicipios()
 {
     try
     {
         DataTable datos = new DataTable();
         datos = NMunicipio.ListaMunicipios();
         dataGridView1.DataSource = datos;
         dataGridView1.Refresh();
         this.dataGridView1.Columns["Id_Zona"].Visible = false;
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
 }