Using command button to open another application

F

fredg

Can Access open a (third party) program by pointing to the .exe file.

Craig

See the FollowHyperlink method in VBA help:

Application.FollowHyperlink "c:\PathToFolder\ProgramName.exe"

Also look up the Shell function.
 
Top