Hyperlink functions

P

Pieter

Hi,

I want to add a function to a hyperlink field. The program
should automaticly fill in the following :

http://myaddress/+"field"+.html

where field is another field, for example with the
name 'firm', in the database of the type text.

I think you can let Access do this but how ?

Suggestions and help are very welcome.
 
D

Dirk Goldgar

Pieter said:
Hi,

I want to add a function to a hyperlink field. The program
should automaticly fill in the following :

http://myaddress/+"field"+.html

where field is another field, for example with the
name 'firm', in the database of the type text.

I think you can let Access do this but how ?

Suggestions and help are very welcome.

Something like

Application.FollowHyperlink _
"http://" & "myaddress/" & Me.[FieldName] & ".html"

if I understand you correctly. Note: I had to break the literal prefix
of the address into two pieces to keep the newsreader from
re-interpreting it. That's not really necessary in your code, but I'm
not even sure how it's going to display when your newsreader sees this
message.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top