Having some trouble, need help.
So, what I've got is a picturebox and a textbox, I got some code to put text into a picturebox so I could better understand how it works, but what I don't understand is how to put the text on top of the image that is in the picturebox, can anyone tell me how to do that?

Here's the code

vb Code:
  1. Dim Graph As Graphics
  2. Dim Drawbitmap As Bitmap
  3. Dim Brush As New Drawing.SolidBrush(Color.Black)
  4. private sub textbox1_text changed( byval sender as blah blah blah...)
  5. Drawbitmap = New Bitmap(PictureBox1.Width, PictureBox1.Height)
  6. Graph = Graphics.FromImage(Drawbitmap)
  7. PictureBox1.Image = Drawbitmap
  8. Graph.SmoothingMode = Drawing2D.SmoothingMode.HighQuality
  9. Graph.DrawString(TextBox1.Text, TextBox1.Font, Brush, PictureBox1.Location)
  10. end sub