Réponse acceptée !
bonsoir
j'ai interprété ( peut etre à tort ) que tu souhaites lancer une macro Excel depuis une application VB...j'espere ne pas me tromper ...
Private Sub Command1_Click()
Dim Xl As Excel.Application
Dim Wb As Excel.Workbook
Set Xl = CreateObject("Excel.application")
Xl.Visible = True
Set Wb = Xl.Workbooks.Open("C:\leClasseur.xls")
Xl.Run "nomMacro"
'
'autre possiblité :
'Xl.Run Wb.Name & "!Module1.nomMacro"
'
'
'
Set Wb = Nothing
Set Xl = Nothing
End Sub
bonne soiree
michel