Bonjour,
avec quelle commende VB on fait Couper, copier... dans un webBrowser
avec quelle commende VB on fait Couper, copier... dans un webBrowser
WebBrowser1.Document.ExecCommand("SelectAll", False, Nothing)
WebBrowser1.Document.ExecCommand("Copy", False, Nothing)
WebBrowser1.Document.ExecCommand("Paste",False,Nothing)
'Recapitulatif des codes
'Selctionner tout
WebBrowser1.Document.ExecCommand("SelectAll", False, Nothing)
'Copier
WebBrowser1.Document.ExecCommand("Copy", False, Nothing)
'Coller
WebBrowser1.Document.ExecCommand("Paste",False,Nothing)
'Couper
WebBrowser1.Document.ExecCommand("Cut", False, Nothing)