- Code: Select all Expand view
@ 240, 90 XIMAGE oImage ;
FILENAME ".\bitmaps\verde.jpg" NOBORDER ;
SIZE 250,200 ;
OF oFrmFiscale ;
UPDATE
oImage:bRClicked := { || NIL }
oImage:ltransparent:=.t.
oImage:nUserControl :=0
and I try to write a text into
- Code: Select all Expand view
- Static Function Calcola()
local oBold
DEFINE FONT oBold NAME 'Tahoma' SIZE 0, -16 BOLD
////my calculation
cCod :="wwwwwwwwwwwww"
oImage:bPainted:= { |hDC|myfunc(hdc,oBold,cCod)}
return nil
Function myfunc(hdc,oBold,cCod)
FW_SayText( hDC, ;
cCod, ;
{ 150, 32, 108, 25 },,oBold, CLR_GREEN, , .f. )
return nil
why not run ?