Hi all
I wonder if anyone on here can help me?
I have built an Application in VB2008 Express that lets you open an image and type text over the top of the Image. I can save the image no problem from within the program BUT how do i get the Text to Save itself with the Image at the same time.
The Text i want to save is a Label which recieves input from a Textbox.
This is the code for saving the image
.....................................................
Dim savefiledialog1 As New SaveFileDialog
Try
savefiledialog1.Title = "Save File"
savefiledialog1.FileName = "*.bmp"
savefiledialog1.Filter = "Bitmap |*.bmp"
If savefiledialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image.Save(savefiledialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp)
End If
Catch ex As Exception
'Do Nothing
End Try
End Sub
End Class
.........................................
any help would be great
cheers
ChrisVB2008