Hyperlink inserted in a table by code doesn't open

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I insert in a form a Hyperlink by code, based on a textfield in the form. The
hyperlink is stored in a Hyperlink-Field in the table. By cklicking in the
form or in the table, the link doesn't open.

1. When I copy the link and paste into the browser, the link work. --> I
assume, the link is well formed an correct --> my ¨link creating code should
be OK

2. When I insert the link manually in the table or the form, it will work
too. --> I assume that the table/form fields are formed correct --> My system
seems to be configured correct.

Does anyone have any ideas about other possible reasons?

Thanks a lot

Bobby
 
jokobe said:
What happens, when you click on the link in the form?

The cursor turns to "Hyperlink", mens to the hand symbol and by clicking the
field it will be marked (the normal "enter the field" behavior). Rightcklick
and "open Hyperlink" has no effect... but simple "ctrl x" and "ctrl v" turns
the link into a clickable one in the same field.

By code I fill the "value" of the field with the URL-String. That should be
correct - isn't it?

Thanks
Bobby
 
I think you need to add something like this

Application.FollowHyperlink "http://" & Me.URL, , True
 
chemicals said:
I think you need to add something like this

Application.FollowHyperlink "http://" & Me.URL, , True

Yes, the workaround to add such code in a "click" event works, but a
hyperlink should do this without such a "help"...

I wonder, if other had the same experience and if it's a bug in the
applicaion or if I made something wrong...
 
Back
Top