private void btnPrestamos_Click(object sender, EventArgs e)
        {
            RegistroPrestamosLibros RP = new RegistroPrestamosLibros(EmpleadoActual);

            RP.TopLevel = false;
            RP.Parent   = pVentanas;
            RP.Show();
        }
Exemple #2
0
 public BuscarLibro(RegistroPrestamosLibros Caller)
 {
     InitializeComponent();
     this.Caller = Caller;
 }
 public BuscarMiembros(RegistroPrestamosLibros Caller)
 {
     InitializeComponent();
     LibrosCaller = Caller;
 }