Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* ej22_TipDelDia2
- Ahora mostraremos el tip del Dia antes de iniciar un programa
- Necesitamos copiar el archivo .rct creado en el ejercicio anterior
- a la carpeta donde creamos este programa para que funcione */
- #include <radc++.h>
- Form form1("Tip del Dia - RAD C++ Ejemplo");
- //add tip of the day form to project
- TipOfDay t("tipoftheday.rct","Tip del Dia",form1);
- //tipoftheday.rct is file that we create in last example
- //"Tip of the Day" is title of tipofday form
- //form1 is parent form
- rad_main()
- rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement