Advertisement
idsystems

CPP_RAD_Ejercicio17

May 19th, 2012
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. /* ej17_MostrarImagenExe
  2. Mostrar una imagen desde un archivo EXE */
  3. #include <radc++.h>
  4.  
  5. Form form1("Cargar imagen desde otro exe - RAD C++ Ejemplo");
  6.  
  7.  
  8. ImageBox ibox(AUTO_ID,0,100,50,200,200,form1); //2nd arg : 0 = no image by default
  9.  
  10.  
  11. rad_main()
  12.  
  13.        ibox.loadExternal("C:\\WINDOWS\\winhlp32.exe",1047);
  14.        //1047 is ID of an image in the resources of winhlp32.exe
  15.        
  16. rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement