Is there any way to make an Access button hyperlink based off of a table record?
I have a button 开发者_如何学JAVAwith a hyperlink to an Internet address.
Ideally, I'd like the button to link to whatever address is in a link lookup table.
Is there any way to do that?
Thanks, Catherine
One way would be to use DLookUp and FollowHyperlink:
FollowHyperlink DlookUp("MyLink","MyLinktable","OptionalCriteria")
精彩评论