public Rol() { InitializeComponent(); LlenadorDeTablas lleni = new LlenadorDeTablas(); // lleni.llenarListBoxConCondicion(ref listBox1, "ROL", "ROL_NOMBRE","ROL_ESTADO = 1"); // lleni.llenarListBoxConCondicion(ref listBox2, "ROL", "ROL_NOMBRE", "ROL_ESTADO = 0"); lleni.llenarCheckedListBox(ref checkedListBox1, "FUNCIONALIDAD", "FUNC_NOMBRE"); }
private void button_reprogramar_Click(object sender, EventArgs e) { groupBox2.Enabled = true; LlenadorDeTablas lloni = new LlenadorDeTablas(); lloni.llenarComboBoxAeronaves(ref comboBox_aeronaves, this.id_aeronave,this.fecha); if (comboBox_aeronaves.Items.Count == 0) { groupBox2.Enabled = false; groupBox3.Enabled = true; } }
private void Rol_Activated(object sender, EventArgs e) { LlenadorDeTablas lleni = new LlenadorDeTablas(); listBox1.Items.Clear(); listBox2.Items.Clear(); lleni.llenarListBoxConCondicion(ref listBox1, "ROL", "ROL_NOMBRE", "ROL_ESTADO = 1"); lleni.llenarListBoxConCondicion(ref listBox2, "ROL", "ROL_NOMBRE", "ROL_ESTADO = 0"); listBox1.Refresh(); listBox2.Refresh(); }