Not completely. You talk about "pictures" but you don't mention whether you're talking about PictureBox controls, GDI+ drawings or something else. Be PRECISE when posting so we don't have to guess, because the answer will usually be different for different interpretations.
Here's what I'm guessing you're talking about. You're using GDI+ to draw on a form, i.e. using the Graphics object in the Paint event handler, and you want to know how get that drawing to be visible over the controls you've placed on the form. The answer is that you can't.
Programming objects work just like real-life objects. Imagine that you have a table and you draw on it. Now you put a mat on the table. How are you going to get the drawing to be visible on the mat? The answer is that you can't. You'd have to draw on the mat too. The answer is the same here: you'd have to draw on the control(s) too. That's quite easy to do though. You simply use one method to handle the Paint event for both the form and the control(s). You translate the coordinates to the form's world and then it looks like a single drawing. Try this:
1. Create a new Windows Forms Application project.
2. Add a Panel to the form.
3. Add this code:
vb.net Code:
Private Sub Form1_Paint(ByVal sender As Object, _
ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
e.Graphics.DrawString("Hello World", Me.Font, Brushes.Black, 175, 50)
End Sub
4. Run the project and you'll see that the Panel obscures part of the drawn text.
5. Change the code to this:
vb.net Code:
Private Sub Form1_Paint(ByVal sender As Object, _
ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint, _
Panel1.Paint
Dim canvas As Control = DirectCast(sender, Control)
Dim position As New Point(175, 50)
position = Me.PointToClient(canvas.PointToScreen(position))
e.Graphics.DrawString("Hello World", Me.Font, Brushes.Black, position.X, position.Y)
End Sub
6. Run the project again and you'll see all the text, because it's drawn on the Panel too at the same location.
Just note that if that's not what you were talking about then I've wasted that time and effort and that's a perfect example of why you need to be clear in the first place.