I am using the Printer class. I want to put a symbol at the beginning of a line ( checkmark ). The symbol ( and its counterpart ) are compiled in my resources.
I use the following to load the resources in a bitmap ( it works great for other purposes ):
aIBmp := { LoadBitMap( GetResources( ) , "INOK" ), LoadBitMap( GetResources( ), "INNO" ) }
Now I want to print out that checkmark so I use:
oPrn:SayBitmap( nRow, 5 * nCsp, aIBmp[1] )
In theory this should work. ( I have no problem printing external resources ). It doesn't. Do I need to get the value some other way from my resource so I can use it here ?
Thanks.