How To Execute JavaScript in VBA Code?

  • Thread starter Thread starter Gary
  • Start date Start date
G

Gary

My main application is MS Access 2003, and I wish to execute a JavaScript
called "MySaveAs.js" which is saved in a certain path.

Is there a API call that I can use to execute this???


Thanks,

Gary
 
Gary said:
My main application is MS Access 2003, and I wish to execute a JavaScript
called "MySaveAs.js" which is saved in a certain path.

Is there a API call that I can use to execute this???


Thanks,

Gary

Just use:

application.FollowHyperlink "path name to your script to run"
 
Back
Top