If you place an image on the form, such as a musical note, the image will have a "click" and "double click" event in the property box. You can then execute code by clicking on the image. The Shell function will launch an external program. Simply place "shell" into the Access Help Box for details. If your image is named imgMusicNote, for example, clicking on it will cause (in this example) the Windows Calculator to be run:
Private Sub imgMusicNote_Click()
'Specifying 1 as the second argument opens the application 'in normal size and gives it the focus.
Dim RetVal
RetVal = Shell("C:\WINDOWS\CALC.EXE", 1) ' Runs Calculator.
End Sub
Simply substitute the path and program name to the exe file you wish to run!
The Missinglinq
There's ALWAYS more than one way to skin a cat!