Exemplo n.º 1
0
 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]*", "");
     }
 }
Exemplo n.º 2
0
 private void FrmLogin_Load(object sender, EventArgs e)
 {
     ubo = new ParticipanteBO();
 }