by DanielPuente » Thu Mar 09, 2006 10:38 pm
Antonio:
I confirm what alex said. Yesterday i was working in a fw 192 program recompiling it win fw 2.3 and clipper and i have some compatibility problems (i think) between dbuttons class and fw tbitmap class, so i compiled bitmap.prg from fw23\source\classes with my program and this line:
@ 18,45 BITMAP oBmp FILE "logo2.bmp" SIZE 400,100 OF oWnd NOBORDER
Produces the same error alex said:
Descripci¢n: Error BASE/1068 Error de argumento: array access
Args:
[ 1] = N 22524
Invocado por TBITMAP:LOADIMAGE(591)
The line in bitmap.prg:
aBmpPal = PalBmpRead( ::GetDC(), AllTrim( cBmpFile ) )
Is returning a numeric value instead an array, so you get an error in:
::hBitmap = aBmpPal[ 1 ]
::hPalette = aBmpPal[ 2 ]
If i put:
IF VALTYPE(ABMPPAL) # 'N'
Before those lines, the bitmap, obviously, is no painted. If you use tbitmap from fw libs you don't have any problems, seems like if the bitmap.prg in source\classes is different from the one in the libs.
Regards,