"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

Reply via email to