Originally posted by Jaiboy
Try this

VB Code:
  1. Private Sub btnChoose1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnChoose1.Click
  2. Dim ofdImage1 As New OpenFileDialog()
  3. ofdImage1.Filter = "Picture Files|*.bmp;*.jpg;*.jpeg;*.gif;*.ico"
  4. If (ofdImage1.ShowDialog() = DialogResult.OK) Then
  5. Me.picImage1.Image = New Bitmap(ofdImage1.FileName)
  6. End If
  7. End Sub
lol , this is exactly what I said .