Advertisement
idsystems

CPP_RAD_Ejercicio11

May 18th, 2012
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. /* ej11_MDIForm
  2. Ejemplo de como crear ventanas dentro de otras ventanas
  3. es lo que llamamos Forma MDI */
  4.  
  5. #include <radc++.h>
  6.  
  7. //Create new MDI Form with title "MDI Form"
  8. MDIForm form1("MDI Form");
  9.  
  10. //Create new child form within 'form1' by calling its function 'createChild'
  11. //NOTE:newly created child form will be accessible through child_form1 as normal form
  12. Form child_form1 = form1.createChild("Forma Hija 1");
  13.  
  14. rad_main()
  15.  
  16.        
  17. rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement