private void CargarComboIdParticipantes()
        {
            try
            {
                List <PARTICIPANTES> lstresultado = R_Humanos.NotasIdParticipantes();

                this.cboparticipantes.DataSource = lstresultado;
                cboparticipantes.ValueMember     = "ID_Participantes";
                cboparticipantes.DisplayMember   = "Cedula_";
                cboparticipantes.Refresh();
            }
            catch (Exception)
            {
                MessageBox.Show("No hay participantes agregados");
            }
        }