A family of Microsoft relational database management systems designed for ease of use.
Firstly, avoid the hyperlink data type; it's more trouble than it's worth. Instead store each hyperlink as text in a column of text data type.
In the report do as follows:
1. Bind a text box control to which ever column you wish to show as the hyperlink, and set its DisplayAsHyperlink property to 'Always'.
2. Superimpose a command button completely over the above control and set its Transparent property to True (Yes).
- Add a text box control to the report bound to the column which contains the hyperlink and set its Visible property to False(No) to hide it.
4. Set the HyperlinkAddress property of the command button to:
=[NameOfTheHiddenControlWhichContainsTheHyperlink]
Open the report in report view and click on what appears to be a hyperlink. You will actually be clicking on the transparent button of course, so the hyperlink contained in the hidden control referenced by the button will be followed.