Hyperlinks that don't

kupe

Registered User.
Local time
Today, 20:01
Joined
Jan 16, 2003
Messages
462
A field in the table is hyperlinked. I put urls in, but obviously I have to do something else to tag on "http://".

Alternatively, be pleased to know the code to concatenate "http://" onto the urls.
 
How are you putting the URLs in? With a form? If so, you can concatenate the "http:\\" with your form value, something like this:

Me.txtURL = "http:\\" & Me.txtURL

where Me.txtURL refers to the textbox on the form where you are typing in the URL.

Makes sense?
 
Brilliant, databasedonr, many thanks. Makes sense and works well. (Amazing how you - I - can forget simple things.) Much obliged.
 

Users who are viewing this thread

Back
Top Bottom