Marneus73
Messages postés344Date d'inscriptionmercredi 24 janvier 2007StatutMembreDernière intervention27 octobre 2008
-
29 août 2007 à 12:55
allthew3
Messages postés551Date d'inscriptionsamedi 8 janvier 2005StatutMembreDernière intervention12 avril 2008
-
29 août 2007 à 20:43
Bonjour à tous,
Est il possible qu'un clique sur un bouton déclenche l'ouvertue d'une page web (avec le navigateur par defaut) et ouvre un lien ex: www.google.fr (Le lien serait présent dans un TextBox) ?
Merci d'avance.
welcometomyheaven
Messages postés24Date d'inscriptiondimanche 11 juin 2006StatutMembreDernière intervention 8 août 2008 29 août 2007 à 16:45
voila une solution efficace
copier ce code
Private 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
Private Sub Command1_Click()
VBHref Text1.Text
End Sub
Private Sub VBHref(Commande$)
Dim Foo&
Foo = ShellExecute(hwnd, "Open", Commande, "", "", 1)
End Sub
n'oubli pas d'ajouter un textbox et un button de command