Ouverture fichier type pdf

Ouverture fichier type pdf - VB/VBA/VBS - Programmation

Marsh Posté le 17-07-2007 à 11:10:36    

Bonjour,
 
Dans excel, via vba je souhaiterais faire ouvrir un fichier pdf en cliquant sur bouton Aide
Pour le bouton pas de problème, mais pour l'ouverture fichier pdf.... Pb
 
Quelqu'un pourrait-il m'aider ?
 
Merci,

Reply

Marsh Posté le 17-07-2007 à 11:10:36   

Reply

Marsh Posté le 17-07-2007 à 11:18:40    

bonjour,
regarde du coté de shellexecute

Reply

Marsh Posté le 17-07-2007 à 14:16:34    

En VB6/VBA c'est plutôt la fonction Shell() tout court qu'il faut utiliser.
ShellExecute c'est l'api windows non ? Peut-être aussi du VB.NET ?

Reply

Marsh Posté le 17-07-2007 à 16:00:41    

a toi de choisir
                                                                                                                                                     
dans un Module


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


dans ThisWorkbook


Sub ShellExecuteOuvrir()
Dim fich as String
    fich = "C:\Transfert\Essai.pdf"
    ShellExecute 0, "open", fich, "", "", 0
End Sub
 
Sub ShellOuvrir
       Shell """C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe"" ""C:\Transfert\Essai.pdf""", vbMaximizedFocus
End Sub


Message édité par kiki29 le 17-07-2007 à 16:02:26
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed