Can I insert an image any location on RichTextBox or PictureBox ?

  • Thread starter Thread starter Asking
  • Start date Start date
A

Asking

Hi all,

I want to insert an image any location (x, y) on RichTextBox or PictureBox
(or any on component supported drawing too).

Can I do this? or How can I do this, please show me a way ?

Thank you
E.Miman
 
E.Miman,

With a RichTextBox, do you want to insert it into the document itself or
do you want to just paint the picture over it? With any control, you can
attach to the Paint event and then paint the picture where you want, but
that might not work in all cases, especially since the way the control looks
is going to change (a button is clicked, a drop down list is dropped down).
 
Back
Top