I am developing a database for a client that will be run using Access 2007. I have Access 2010 installed on my machine but have a gentleman in my office with Access 2007 that helps me test the database by entering data, beta-testing macros for compatibility, etc. The subroutine below works fine on my machine (2010) but bombs out on his (2007). [MyCoord] is a string assembled by a query that concatenates latitude/longitude values into the Google maps standard lookup text, so when the User clicks the button, an Internet Explorer window launches with a map for a given location. Comments and suppositions greatly appreciated.
Private Sub Command165_Click()
If IsNull([MyCoord]) = False Then
Application.FollowHyperlink [MyCoord]
End If
End Sub
Private Sub Command165_Click()
If IsNull([MyCoord]) = False Then
Application.FollowHyperlink [MyCoord]
End If
End Sub