private void FrmRegistro_Load(object sender, EventArgs e) { try { lblMensaje.Text = ""; pbo = new ParticipanteBO(); dbo = new DimensionBO(); cbo = new CategoriaBO(); cbxDimension.DataSource = dbo.CargarDimensiones(); chbCategorias.Items.AddRange(cbo.CargarCategorias().ToArray <Categoria>()); } catch (Exception ex) { lblMensaje.Text = ex.Message.Replace("[0-9]*", ""); } }
private void FrmLogin_Load(object sender, EventArgs e) { ubo = new ParticipanteBO(); }