2 Attachment(s)
[RESOLVED] Send CheckBox Behind Image
I have created a web browser using the WebBrowser control. Apart from a few controls, the Form has a CheckBox & an Image control as shown in the 1st image attached.
Now when I resize the Form, I find that when the width of the Form decreases considerably the CheckBox covers the Image as shown in the 2nd image attached. How do I prevent the CheckBox from covering the Image under such circumstances?
I tried setting the ZOrder of both the CheckBox & the Image but that doesn't help.
Re: Send CheckBox Behind Image
Why not just do the same thing you did to the address bar, which seems to have disappeared.
Re: Send CheckBox Behind Image
I see where the globe image stays behind the checkbox. What is the difference the globe image and the right arrow image? Are those really images in a picturebox or image control or are they buttons on a menu strip control?
Re: Send CheckBox Behind Image
Personally I'd put the block pop-ups option in the menu and just get rid of the check box.
Re: Send CheckBox Behind Image
The Image control (like the Label control) is lightweight, so cannot be "in front" of normal controls (ones which have an hWnd property, like a TextBox etc).
If you want it in front, use a PictureBox instead.
Re: Send CheckBox Behind Image
Yes.....replacing the Image with a PictureBox does resolve the problem.