public void LlenarDsConsulta() { try { DataSet ds = CtrlGrupos.GetGrupoAll(); dtConsulta = ds.Tables[0].Copy(); dsConsulta.Tables.Clear(); if (dsConsulta.Tables.Count == 0) { dsConsulta.Tables.Add(dtConsulta); } } catch (Exception ex) { XtraMessageBox.Show(ex.Message); } }
private void FrmGetCursos_Load(object sender, EventArgs e) { try { DataTable dt1 = CtrlGrados.GetGradoAll().Tables[0]; LueGrado.Properties.DataSource = dt1; LueGrado.Properties.DisplayMember = "Nombre"; LueGrado.Properties.ValueMember = "CodigoGrado"; DevExpress.XtraEditors.Controls.LookUpColumnInfo col; col = new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre", "Nombre", 100); LueGrado.Properties.Columns.Add(col); LueGrado.ItemIndex = -1; DataTable dt2 = CtrlGrupos.GetGrupoAll().Tables[0]; LueGrupo.Properties.DataSource = dt2; LueGrupo.Properties.DisplayMember = "Nombre"; LueGrupo.Properties.ValueMember = "CodigoGrupo"; DevExpress.XtraEditors.Controls.LookUpColumnInfo col1; col1 = new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nombre", "Nombre", 100); LueGrupo.Properties.Columns.Add(col); LueGrupo.ItemIndex = -1; } catch (Exception ex) { XtraMessageBox.Show(ex.Message, Resources.AppName, MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button2); return; } TxtNombre.Focus(); if (Modo == "E" && Id > 0) { CargarDatos(Id); } }