B
Bob
I currently use A2003 w/sp3 on a lan. All databases are designed FE/
BE.
A piece of the code of a module I've written inserts the hyperlink to
a file stored on our lan:
strHypName = "#" & strFinalizedPath & "\" &
strFilename & "#"
' Append information to table
sql = "INSERT INTO d_right_fax_files
( file_loc) " _
& "VALUES ( '" & strHypName & "');"
db.Execute sql
and it works fine.
Example of a path: I:\_DepartmentXXX\RightFax\Finalized
\ThedocNameHere.rtf
What I'd like to display: ThedocNameHere.rtf
If one right clicks a hyperlink in datasheet view, the link can be
edited. The view is nicer if the text displaying does not include the
entire path to the file it's linked to. Is there a way to accomplish
changing the text property of the hyperlink? Wher/how is the text
property saved differently from that of the hyperlink path?
Thank you for taking a look.
Bob
BE.
A piece of the code of a module I've written inserts the hyperlink to
a file stored on our lan:
strHypName = "#" & strFinalizedPath & "\" &
strFilename & "#"
' Append information to table
sql = "INSERT INTO d_right_fax_files
( file_loc) " _
& "VALUES ( '" & strHypName & "');"
db.Execute sql
and it works fine.
Example of a path: I:\_DepartmentXXX\RightFax\Finalized
\ThedocNameHere.rtf
What I'd like to display: ThedocNameHere.rtf
If one right clicks a hyperlink in datasheet view, the link can be
edited. The view is nicer if the text displaying does not include the
entire path to the file it's linked to. Is there a way to accomplish
changing the text property of the hyperlink? Wher/how is the text
property saved differently from that of the hyperlink path?
Thank you for taking a look.
Bob