Hello,
I tried this and it works.
Is this a good solution???
Or do you recomend anything alse???
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim OFD As New OpenFileDialog
OFD.Filter = "BMP files (*.bmp)|*.bmp|JPG files (*.jpg)|*.jpg"
If OFD.ShowDialog = Windows.Forms.DialogResult.OK Then
Me.FotoPictureBox.Image = Image.FromFile(OFD.FileName)
End If
End Sub