Link to home
Start Free TrialLog in
Avatar of iceman_dci
iceman_dci

asked on

MS ACCESS Web Form - command button to open document from record

Hi:
I have a form that I've converted over to HTML, but now some of the commands don't work bcs its obviously in a differnt language (originally done in VBA through Access).

The code that I was using to open a document link from the record was using the followhyperlink method...code i was using here...Application.FollowHyperlink txtFilePath <where txtfilepath is in the record as tblRecord / Document Link column.

How would I do this in HTML?
Avatar of stevbe
stevbe

I think if you just make that data a hyperlink ref on your web page you will not have to do anything ... the file should just open.

<a href="file://c:/book1.xls">book1</a>
ASKER CERTIFIED SOLUTION
Avatar of Scott McDaniel (EE MVE )
Scott McDaniel (EE MVE )
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial