1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| Private Sub Label1_Click()
arr = Array("barre,bout,Nouveau,2520,macro2,,1", _
"barre,bout,Ouvrir,23,macro2,,1", _
"barre,pop,Enregistrement,,,1,1", _
"barre,pop,Impression,,,1,1", _
"barre,pop,Exporter,,,1,1", _
"barre,pop,Envoyer,,,1,1", _
"Enregistrement,bout,enregistrer,3,macro3,,1", _
"Enregistrement,bout,enregistrer sous,3,macro4,,0", _
"Impression,bout,Apercu,109,macro4,,1", _
"Impression,bout,Impression couleur,2521,macro4,1,1", _
"Impression,bout,imprimer en noir et blanc ,2521,macro4,,1", _
"Envoyer,bout,Par TELECOPIE,888,sendtel,1,1", _
"Envoyer,bout,Par Mail Outlook 2013,3738,sendoutlook,1,0" & IIf(Val(Application.Version) <> 12, 1, 0), _
"Envoyer,bout,Par Mail CDO 2007,2188,sendCDO,1," & IIf(Val(Application.Version) = 12, 1, 0), _
"Exporter,bout,Feuille active en PDF,444,macro4,,1", _
"Exporter,bout,Le Classeur en PDF,444,macro4,,1" _
)
createbarre arr, Label1, Me,true
End Sub |
Partager