Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* ej11_MDIForm
- Ejemplo de como crear ventanas dentro de otras ventanas
- es lo que llamamos Forma MDI */
- #include <radc++.h>
- //Create new MDI Form with title "MDI Form"
- MDIForm form1("MDI Form");
- //Create new child form within 'form1' by calling its function 'createChild'
- //NOTE:newly created child form will be accessible through child_form1 as normal form
- Form child_form1 = form1.createChild("Forma Hija 1");
- rad_main()
- rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement