Try this (Amend as Applicable)
SidCode:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) _ Handles Button1.Click saveFileDialog1.Filter = "JPeg Image|*.jpg" saveFileDialog1.Title = "Save an Image File" saveFileDialog1.ShowDialog() ' If the file name is not an empty string open it for saving. If saveFileDialog1.Filename <> "" Then Textbox1.Text = saveFileDialog1.Filename End If End Sub




Reply With Quote