I have on "open" dialog like this:
VB Code:
  1. On Error GoTo ErrHandler
  2.    CommonDialog1.Filter = "JPG (*.jpg)|*.jpg"
  3.    CommonDialog1.FilterIndex = 2
  4.    CommonDialog1.ShowOpen
  5.    Exit Sub
  6. ErrHandler:
  7.    Exit Sub
I am trying to have the the file selected show up in Image1.... Please help. Thanks in advance