how to use a field value in hyperlink?

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

Guest

Im trying to have a button to where when pressed it goes to a url. However,
I am needing it to take a textbox entry to complete the URL. Such as:

The final URL would like like this:
//videosrv/directory/directory/b[textboxentry]/plans

Then it would go to that [textboxentry]'s folder on the server.

Can you help?
 
Im trying to have a button to where when pressed it goes to a url. However,
I am needing it to take a textbox entry to complete the URL. Such as:

The final URL would like like this:
//videosrv/directory/directory/b[textboxentry]/plans

Then it would go to that [textboxentry]'s folder on the server.

Can you help?

Use a normal text datatype field for this, not a hyperlink field.
On the form, code the control's Double-click event:

Application.FollowHyperlink "//videosrv/directory/directory/b" &
[textboxentry] & "/plans "
 

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

Back
Top