I am sending you a copy of my code as it does not mention
ListGalleries. As you will see the 5 levels of numbering
are set up in the Listnum called 'AutonosNew'. The
actual number is inserted using the ListNum field.
Sub InsertNumL1()
'
' InsertNumL1 Macro
' Macro recorded 11/05/2004 by Ann Proven
'
Selection.Style = ActiveDocument.Styles("Heading 2")
Selection.Fields.Add Range:=Selection.Range,
Type:=wdFieldEmpty, Text:= _
"LISTNUM AutonosNew\l 1",
PreserveFormatting:=False
Selection.TypeText Text:=vbTab
End Sub
Sub InsertNumL2Bold()
'
' InsertNumL2Bold Macro
' Macro recorded 11/05/2004 by Ann Proven
'
Selection.Style = ActiveDocument.Styles("Heading 3")
Selection.Font.Bold = wdToggle
Selection.Fields.Add Range:=Selection.Range,
Type:=wdFieldEmpty, Text:= _
"LISTNUM AutonosNew\l 2",
PreserveFormatting:=False
Selection.Font.Bold = wdToggle
Selection.TypeText Text:=vbTab
End Sub
Sub InsertNumL3()
'
' InsertNumL3 Macro
' Macro recorded 11/05/2004 by Ann Proven
'
Selection.Style = ActiveDocument.Styles("ind1")
Selection.Fields.Add Range:=Selection.Range,
Type:=wdFieldEmpty, Text:= _
"LISTNUM AutonosNew\l 2",
PreserveFormatting:=False
Selection.TypeText Text:=vbTab
End Sub
Sub InsertNumL4()
'
' InsertNumL4 Macro
' Macro recorded 11/05/2004 by Ann Proven
'
Selection.Style = ActiveDocument.Styles("ind2")
Selection.TypeText Text:=vbTab
Selection.Fields.Add Range:=Selection.Range,
Type:=wdFieldEmpty, Text:= _
"LISTNUM AutonosNew\l 3",
PreserveFormatting:=False
Selection.TypeText Text:=vbTab
End Sub
Sub InsertNumL5()
'
' InsertNumL5 Macro
' Macro recorded 11/05/2004 by Ann Proven
'
Selection.Style = ActiveDocument.Styles("ind3")
Selection.TypeText Text:=vbTab & vbTab
Selection.Fields.Add Range:=Selection.Range,
Type:=wdFieldEmpty, Text:= _
"LISTNUM AutonosNew\l 4",
PreserveFormatting:=False
Selection.TypeText Text:=vbTab
End Sub
Sub InsertNumL6()
'
' InsertNumL6 Macro
' Macro recorded 11/05/2004 by Ann Proven
'
Selection.Style = ActiveDocument.Styles("ind4")
Selection.TypeText Text:=vbTab & vbTab & vbTab
Selection.Fields.Add Range:=Selection.Range,
Type:=wdFieldEmpty, Text:= _
"LISTNUM AutonosNew\l 5",
PreserveFormatting:=False
Selection.TypeText Text:=vbTab
End Sub