Hyperlinks that don't (1 Viewer)

kupe

Registered User.
Local time
Today, 16:12
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.
 

databasedonr

Registered User.
Local time
Today, 11:12
Joined
Feb 13, 2003
Messages
163
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?
 

kupe

Registered User.
Local time
Today, 16:12
Joined
Jan 16, 2003
Messages
462
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

Top Bottom