Then you need to ask the user to select image or file using the openfile something like below
Dim objFile As New OpenFileDialog
objFile.ShowDialog()
Dim filepath As String = ""
If Windows.Forms.DialogResult.OK Then
filepath = objFile.FileName
End If
File path will have the path selected by user this you need to pass to your EXE.