Good morning everyone
How do I make the image appear inside the group?
In the example below if you comment the group line the image appears and I need it to be exactly inside the group and I can not make it appear.
#include "FiveWin.ch"
STATIC oWnd, oBmp
FUNCTION Main()
local oGrp
DEFINE WINDOW oWnd FROM 0,0 TO 200,200 TITLE "Test Class TBitmap" pixel
@ 0, 1 GROUP oGrp TO 300, 500 PROMPT "Test" OF oWnd pixel
@ 50, 20 BITMAP oBmp FILENAME "..\bitmaps\Tutanka1.bmp" OF oWnd SIZE 300,200 PIXEL SCROLL
ACTIVATE WINDOW oWnd MAXIMIZED
RETURN ( nil )
Group with image inside
Group with image inside
Marcelo Ferro da Silveira
Fwh14.04/xHarbour 1.2.3 Simplex / Bcc582 / Pelles 8
SqlLib /xMate/WS
Fwh14.04/xHarbour 1.2.3 Simplex / Bcc582 / Pelles 8
SqlLib /xMate/WS
Re: Group with image inside
Marcelo,
Please change
@ 0, 1 GROUP oGrp TO 300, 500 PROMPT "Test" OF oWnd pixel
//@ 50, 20 BITMAP oBmp FILENAME "..\bitmaps\Tutanka1.bmp" OF oWnd SIZE 300,200 PIXEL SCROLL
@ 50, 20 BITMAP oBmp FILENAME "..\bitmaps\Tutanka1.bmp" OF oGrp SIZE 300,200 PIXEL SCROLL
regards
Uwe
Please change
@ 0, 1 GROUP oGrp TO 300, 500 PROMPT "Test" OF oWnd pixel
//@ 50, 20 BITMAP oBmp FILENAME "..\bitmaps\Tutanka1.bmp" OF oWnd SIZE 300,200 PIXEL SCROLL
@ 50, 20 BITMAP oBmp FILENAME "..\bitmaps\Tutanka1.bmp" OF oGrp SIZE 300,200 PIXEL SCROLL
regards
Uwe
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
Re: Group with image inside
thank you ukoenig
Marcelo Ferro da Silveira
Fwh14.04/xHarbour 1.2.3 Simplex / Bcc582 / Pelles 8
SqlLib /xMate/WS
Fwh14.04/xHarbour 1.2.3 Simplex / Bcc582 / Pelles 8
SqlLib /xMate/WS