Dans un Module, tu colles ça..
Public Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Et à la place de ton code actuel, tu mets ça
If MsgBox("Voulez vous aller sur Google ?", vbQuestion + vbYesNo, "Question") = vbYes Then
Call ShellExecute(0, "Open", "http://www.google.fr", "", "C:\", 2)
End If
et voila..
Le succès, c'est la hauteur à laquelle vous rebondissez quand vous avez touché le fond.