Hyperlink problem.

S

Shadrack

I have two fields on my form
Field1 = hyperlinked
Field2 is an unbound text box.

My goal is to have Field2 display the path in Field1 without a # sign at the
begininng and end of the path.
Assume the contents of Field1 = ..\..\image1.jpg

My current code is: Me.Field2 = Me.Field1 however this causes Field2 to
display the following: #..\..\image1.jpg#

What I am seeking is Field2 to be displayed as: ..\..\image1.jpg

How do I accomplish this?
 
Top