Advertisement
idsystems

CPP_RAD_Ejercicio18

May 19th, 2012
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 KB | None | 0 0
  1. /*ej18_MostrarImagenDeInternet
  2. Como mostrar una imagen directamente desde internet */
  3. #include <radc++.h>
  4.  
  5. Form form1("Mostrar imagen de internet - RAD C++ Ejemplo");
  6.  
  7. ImageBox ibox(AUTO_ID,0,50,50,300,200,form1); //2nd arg : 0 = no image by default
  8.  
  9. rad_main()
  10.         ibox.loadImage("http://lamordida.net/wp-content/uploads/2011/03/Dev-Cpp-4.9.9.2.jpg");
  11. rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement