Bump--Hyperlink with a field as a parameter for the URL

C

ChipW

I'm sure this has been asked and answered many times, but...

I would like to insert a hyperlink or button on a form, with a portion of
the URL being static based on the control (different hyperlinks or buttons
go to different pages), but use the productID field as the prameter to open
the correct web page for that product.

This should be simple, but I guess I'm not using the right search tems to
find an answer.

Thanks
Chip
 
V

Van T. Dinh

There is a HyperlinkAddress and HyperlinkSubAddress Property on the Access
CommandButton.

OTOH, I tend to use the CommandButton_Click Event to execute the
FollowHyperlink Method which allows me to construct the Hyperlink address as
required.

Check Access VB Help on the FollowHyperlink Method.

HTH
Van T. Dinh
MVP (Access)
 
Top