I have a basic MS Access application that has a button on a form that should open a webpage with the ID of the Access record as the parameter, but everything I have tried re
Application.FollowHyperlink is fickle.
Application.FollowHyperlink
Use either ShellExecute: Open an html page in default browser with VBA?
ShellExecute
or
CreateObject("Shell.Application").Open "http://example.com/index.php?r=controller/action&id=" & Me.ID
see https://stackoverflow.com/a/18922262/3820271