Theres to much, picture is called picCanvas, they can draw on it using bucket tool, pencil, brush etc... they can load and save images to save image i use...
VB Code:
Private Sub SaveAs_Click()
With CommonDialog1
.CancelError = True
.DialogTitle = "Save As"
.Filter = "Windows bitmap files (*.bmp)|*.bmp"
.ShowSave
picCanvas.Picture = picCanvas.Image
End With
SavePicture picCanvas.Picture, CommonDialog1.FileName
End Sub
what would be good is when they click New then it will erase the last image and the file name so when on the new image they click the save image it wont overwrite there last image but ask them to save it somewhere