Hi jmc!
I've tried drawing directy to the Form, handling my Form's .Paint event, the result was as expected it drew my image all the way to the back, (behind all my controls).
This is my code:
VB.NET Code:
Dim r As New Rectangle(643, 84, 342, 530) e.Graphics.DrawImage(My.Resources.Cancelado, r) ListBox1.SendToBack()
I'm trying to keep it simple, since it'll always be the same image, with the same size on the same location.
So, Is it possible to draw the image over the listBox?




Reply With Quote