Ok, I may have a partial answer to my own question. There is a Control
method called Invalidate() that let's me invalidate any rectangular region
of the Control. So this is what I was looking for.
BUT - does this mean that Refresh() only refreshes invalidated areas? Does
drawing a graphic (ala the Graphics class, for example the use of
DrawLine()) automatically invalidate the graphic object's region? If so, I
don't need to do anything more than what I'm already doing! : )
[==P==]
>I now have graphics being drawn in the Paint event of my form (yeah, and
>it's very cool). Problem was that it only updated any changes to these
[quoted text clipped - 18 lines]
>
> [==P==]
Rob Schieber - 27 Oct 2005 20:46 GMT
> Ok, I may have a partial answer to my own question. There is a Control
> method called Invalidate() that let's me invalidate any rectangular region
[quoted text clipped - 29 lines]
>>
>>[==P==]
Peter,
InvalidateRect and Update seem to be the winning combo for me. I'm not
sure what the offical answer is though.

Signature
Rob Schieber