-
It works fine for me in Office 2007 Do you get the error on getting the property into your variable or when iterating them to the debug window?
-
when i use following code, it return wrong massage: Error 1004, can not get AutoCorrect Replacement property. Sub test() Dim vList As Variant Dim i As Long vList = Application.AutoCorrect.ReplacementList For i = 1 To UBound(vList) Debug.Print vList(i, 1) & vbTab & vList(i, 2) Next End Sub