"Randall Pulsifer" <[EMAIL PROTECTED]> writes:
RP> There is obviously room for a lot more functionality
In the meantime, I wrote a function that changes form bitmaps. Maybe it is
useful for others, too:
static void BmpChangeBitmap (FormBitmapType *bmp, Int rsrcID)
{
Handle h;
BitmapPtr b;
h = DmGetResource(bitmapRsc, rsrcID);
if (h)
{
b = MemHandleLock(h);
WinDrawBitmap(b, bmp->pos.x, bmp->pos.y);
MemHandleUnlock(h);
DmReleaseResource(h);
}
}
Ingo
- Form Bitmap Ingo Brueckl
- Re: Form Bitmap Randall Pulsifer
- Form Bitmap Ingo Brueckl
- Re: Form Bitmap Randall Pulsifer
- Ingo Brueckl
