Hi there,
Have you started coding yet? Please post your code segment in your next post, will help you to validate your code. Good luck & take care.
This is what I have so far
'create a graphics object to use
Dim mygraphicobject As Graphics = CreateGraphics()
'create an empty bitmap object
Dim mybitmap As New Bitmap(200, 200)
Dim X As Integer = 100
Dim Y As Integer = 100
Dim blnstop As Boolean
Dim intX As Integer
Dim intY As Integer
Dim g As Graphics = Me.creategraphics
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
'draw mybitmap
mygraphicobject.DrawImage(mybitmap, X, Y, mybitmap.Width, _
mybitmap.Height)