Select file and save as hyperlink

  • Thread starter ondvirg via AccessMonster.com
  • Start date
O

ondvirg via AccessMonster.com

From a form, I'd like to have users click a command button that would present
a file open/save dialog box then store the file they select in a field on a
record.

I know about the code/API to present the file open/save dialog, but from
there I'm a little lost on how to capture the path/file hyperlink chosen.

Any help is greatly appreciated. Thanks.
 
D

Damon Heron

If you know about the function to call the opendialog, then just
assign the results of the function call to a string variable:

strInputFileName = ahtCommonFileOpenSave(......
Once you have the variable, you can store it in a table in a couple of ways,
the most simple being an
Append query.

Damon
 
Top