Steven Low
Active member
- Joined
- Apr 14, 2005
- Messages
- 42
- Programming Experience
- 1-3
Hi guys
the bottom method works
but again it saved it as a unknown file
Im not sure why thoo because it is set to save as a jpeg?
Dim Save As New SaveFileDialog()
' Configure the dialog
With Save
.InitialDirectory = "G:\"
.Filter = "Jpeg Files (*.jpg)/*.jpg*"
If .ShowDialog = DialogResult.OK Then
PictureBox2.Image.Save(.FileName, System.Drawing.Imaging.ImageFormat.Jpeg)
the bottom method works
but again it saved it as a unknown file
Dim Save As New SaveFileDialog()
' Configure the dialog
With Save
.InitialDirectory = "G:\"
.Filter = "Jpeg Files (*.jpg)/*.jpg*"
If .ShowDialog = DialogResult.OK Then
PictureBox2.Image.Save(.FileName, System.Drawing.Imaging.ImageFormat.Jpeg)