private void btnSalas_Click(object sender, EventArgs e)
        {
            RegistroPrestamoSalas RPS = new RegistroPrestamoSalas(EmpleadoActual);

            RPS.TopLevel = false;
            RPS.Parent   = pVentanas;
            RPS.Show();
        }
 public BuscarSala(RegistroPrestamoSalas Caller)
 {
     InitializeComponent();
     this.Caller = Caller;
 }
 public BuscarMiembros(RegistroPrestamoSalas Caller)
 {
     InitializeComponent();
     SalasCaller = Caller;
 }