Recherche

 

Pour cela, il faut une petite macro :

 

Sub InsertAutoCorrectEntries()
Dim ACE As AutoCorrectEntry

' Create new document.
Documents.Add
' Iterate through AutoCorrect entries.
For Each ACE In Application.AutoCorrect.Entries
' Insert each entry name and its value on a new line.
Selection.TypeText ACE.Name & vbTab & ACE.Value & " " & vbCr
Next
' Format document for three columns.
With ActiveDocument.PageSetup.TextColumns
.SetCount NumColumns:=3
.EvenlySpaced = True
.LineBetween = True
.Width = InchesToPoints(1.67)
.Spacing = InchesToPoints(0.5)
End With
' Set TabStop for all three columns.
ActiveDocument.Paragraphs.TabStops(InchesToPoints(0.88)).Position = _
InchesToPoints(0.88)
End Sub


 

source : KB Microsoft

 

Statistiques

France 67,7% France
Chine 7,9% Chine
États-Unis d'Amérique 4,9% États-Unis d'Amérique

Total:

178

Pays
018534227
Aujourd'hui: 408
Hier: 442
Cette semaine: 1.254
Semaine dernière: 2.977
Ce mois: 3.171