Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* ej17_MostrarImagenExe
- Mostrar una imagen desde un archivo EXE */
- #include <radc++.h>
- Form form1("Cargar imagen desde otro exe - RAD C++ Ejemplo");
- ImageBox ibox(AUTO_ID,0,100,50,200,200,form1); //2nd arg : 0 = no image by default
- rad_main()
- ibox.loadExternal("C:\\WINDOWS\\winhlp32.exe",1047);
- //1047 is ID of an image in the resources of winhlp32.exe
- rad_end()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement