How To Execute JavaScript in VBA Code?

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
 
A

Albert D. Kallal

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"
 
Top