Application.FollowHyperlink does not work!
Code:
Private Sub Command5_Click()
Dim strDetailAddress As String
Dim strGmaps As String
On Error GoTo MyError
strDetailAddress = Me.CAddresse & " " & Me.Ccity & " " & Me.CodePostal
strGmaps = "http://maps.google.com/maps?h1=en&q=" & strDetailAddress
CreateObject("Shell.Application").Open CVar(strGmaps)
Exit_MyError:
Exit Sub
MyError:
MsgBox Err & ": " & Err.Description
Resume Exit_MyError
End Sub