Estimados
Hay alguna forma de colocar una imagen bmp sin necesidad de hacer una por cada resolucion de pantalla
lo hago se la siguente manera
DEFINE WINDOW _oWnd TITLE 'Sistema ";
COLOR Rgb( 130, 130, 130 ), Rgb( 130, 130, 130 ) ;
MENU BuildMenu() ;
MENUINFO 2 ;
MDI
DEFINE BITMAP oBmp FILE "Imagen\Fondo.bmp" OF _oWnd
bla....bla..
ACTIVATE WINDOW _oWnd MAXIMIZED ;
ON PAINT DrawBitmap( hDC, oBmp:hBitmap, ;
( _oWnd:nHeight() / 2 ) - ( oBmp:nHeight() / 2 ), ;
( _oWnd:nWidth() / 2 ) - ( oBmp:nWidth() / 2 ),0,0 )
El problema que si cambian la resolucion es bmp no sale
alguna sugerencia
Saludos
Patricio