I have a form which I use search and view records in an Access database. The database contains authors and their works, which I am displaying via a split form with a searchable combo box on the author field.
I want to add a command button to open a URL in my browser, taking the name of the author from the combobox and appending it within the given URL.
I have tried to do this by editing the hyperlink address property of the command button, using the hyperlink builder as described here
The hyperlink template looks like this:
="http://www.oxforddnb.com/search/quick?quicksearch=quicksearch&docPos=1&searchTarget=people&simpleName=" & [Combo13] & "&search=GO"
When I then click the command button, I get
"A problem occurred while Microsoft Access was communicating with the OLE server or ActiveX Control"
I then receive a security notice, asking me whether I wish to continue, before Access finally throws an error saying it is unable to open the specified file.
I may simply be approaching the problem from the wrong direction, but I have been unable to find guidance on these forums and elsewhere.
Any help would be greatly appreciated. Many thanks!