You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
How does one go about painting a child control of a custom-drawn control? example: lets say I have an almost entirely custom drawn control that has a textbox control in the middle of it. how would I go about drawing the custom portion of the control while allowing the textbox control to draw itself? i.e. assuming this is required in order to allow the textbox to be functional.
Thanks in advance. David Johnson
Alex Yakhnin [MVP]
unread,
Jun 10, 2003, 6:38:45 AM6/10/03
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Override OnPaint event of your "custom" control and do all your painting there. The TextBox "inside" of your control will paint itself...