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"; }
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); } }
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); } }