hi all.
i have a large bitmap that i display in my main window.
as part of my app,
i need to constantly update differnet areas of this bitmap
with new small bitmaps.
what is the best way to do this?
assaf
Invalidate(Rectangle), given the rectangle where the smaller image needs to go.
This will marshal back to
the main UI thread in case you aren't on it, and then you can use the clipping
rectangle to determine which
smaller image needs to be rendered.

Signature
Justin Rogers
DigiTec Web Consultants, LLC.
Blog: http://weblogs.asp.net/justin_rogers
> hi all.
>
[quoted text clipped - 6 lines]
>
> assaf