Advertisement
idsystems

CPP_RAD_Ejercicio22

May 19th, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. /* ej22_TipDelDia2
  2. Ahora mostraremos el tip del Dia antes de iniciar un programa
  3. Necesitamos copiar el archivo .rct creado en el ejercicio anterior
  4. a la carpeta donde creamos este programa para que funcione */
  5. #include <radc++.h>
  6.  
  7. Form form1("Tip del Dia - RAD C++ Ejemplo");
  8.  
  9. //add tip of the day form to project
  10. TipOfDay t("tipoftheday.rct","Tip del Dia",form1);
  11.  
  12. //tipoftheday.rct is file that we create in last example
  13. //"Tip of the Day" is title of tipofday form
  14. //form1 is parent form
  15.  
  16. rad_main()
  17.  
  18. rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement