private void ObtenerIdiomaTodos() { try { this.cbIdioma.ValueMember = "IdIdioma"; this.cbIdioma.DisplayMember = "Descripcion"; DataTable dtIdioma = IdiomaBLL.SelectAllLoad(); this.cbIdioma.DataSource = dtIdioma; this.cbIdioma.SelectedIndex = 0; } catch (Exception ex) { MessageBox.Show(ex.Message, "Residica", MessageBoxButtons.OK, MessageBoxIcon.Error); } }