Jump to content

ChrisVB2008

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by ChrisVB2008

  1. Hi mrwITch Thanks for the Info about my Problem. I have done a search on the Net and have put this same question on a couple of Programming Forums but you are the First one to actually give me something i can build on.. The Panel is being used as the container for the Images that get displayed by the program and the label is the Text container getting its input from the Textbox. If i move the panel then the label moves with it.. Cheers I will let you know how i get on:cool:
  2. 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
×
×
  • Create New...