private void CargarPantallas() { CLS_CatBotones sel = new CLS_CatBotones(); sel.MtdSeleccionarBotones(); if (sel.Exito) { dtgBotones.DataSource = sel.Datos; } }
private void SeleccionarBotones(string ValorInicial) { CLS_CatBotones ins = new CLS_CatBotones(); ins.MtdSeleccionarBotones(); if (ins.Exito) { cmbBotones.Properties.DisplayMember = "v_nombre_bot"; cmbBotones.Properties.ValueMember = "c_codigo_bot"; cmbBotones.EditValue = ValorInicial; cmbBotones.Properties.DataSource = ins.Datos; } else { XtraMessageBox.Show(ins.Mensaje); } }