How can I paint over the top of controls in the form's onpaint event.
It seems that the controls are drawn after the onpaint event which then
covers what I've drawn, is there a default paint function I can call (like
the base.onpaint() for controls)?
TIA
Alan
As far as I know, each control on the form have a Paint event. First, the
form's Paint event is called, then the Paint event is raised for each
control. So that's right, there are stuff paint over what you've drawn.
(this might not be 100% right since I haven't worked with this)
Etienne
> How can I paint over the top of controls in the form's onpaint event.
>
[quoted text clipped - 5 lines]
>
> Alan