Open the image with/in what application?
Should it insert the image into excel?

If it's another application you need to use windows to associate the extension with that app.

If you want to insert the image into the excel worksheet then you can code against the Worksheet_SelectionChange event

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
   MsgBox "Do something with " & Target.value
End Sub