> Is there any readon why you're using the BackgroundImage prooperty?
> Can't you just add a PictureBox, using right click | send to back or
> calling SendToBack(), in the op left corner containing myImage?
My Form is a MdiContainer whose children are placed about the
Position(10,0). When I use a PictureBox it overlap the children-Form.
When I use the method SendToBack() it completly disappear.
Jason Hales - 30 Mar 2006 14:28 GMT
Hi Andreas, that's a new one on me I never thought SendToBack would
place the picture under the MDI client area.
What are you trying to achieve - some sort of tool bar? If so can you
place the picture box in a Panel docked at the top.
The quick'n'dirty option could be to scale the of myImage to the size
of your client area - but that's not an ideal solution
Andreas - 31 Mar 2006 06:37 GMT
Jason Hales schrieb:
> Hi Andreas, that's a new one on me I never thought SendToBack would
> place the picture under the MDI client area.
[quoted text clipped - 4 lines]
> The quick'n'dirty option could be to scale the of myImage to the size
> of your client area - but that's not an ideal solution
Thank you
I put myImage in a PictureBox and set my MdiCields next to it and it
works.