Christopher Greaves

Contact Me

ON LINE STORE

ON LINE STORE

ON LINE STORE

ON LINE STORE

List Numbering in Microsoft Word

The Nature Of The Problem ; Reading List ; List Numbering Is Broken ; Terminology ; Styles ; What Have We Got Here? ; Isolating A List Template ; Manipulating List Templates ; Review Of Outline Numbered List Templates ; Locating List Templates ; Removing Named List Templates ; What About The Other Two List Galleries? ; Creating Extra List Templates ; List Templates In The Document ; Making A Fresh Start ; Purge List Gallery History ; Ferreting out List Templates ; Review Of List Templates ; An Experiment With Simple Numbered List Templates ; A Built-In Numbered Simple List ; Using Named List Templates ; Steps To Build A Named List Template ; Structures ; Assembling The Style ; Assembling A List Template ; Checking It Out ; Locating A Named List Template ; Deleting List Templates ; Paste To New Document

If you are interested in applications please visit www.VBASolutions.ca .

If you are interested in end-user macros please visit www.TorontoMacros.com .

Assembling The Style

In the code that follows I assemble a Style.

It is regular but boring VBA code, and not associated with List Templates. I place the leading part of the code here just so you can know that it exists:

Public Function lngMifToStyle(typParagraphStyle As typMIF_PGF, sty As Style) As Long

' On Error GoTo Failed

With sty

'''

.Font.Name = typParagraphStyle.typFont.strPlatformName

'''

If Len(typParagraphStyle.strIndentRight) > 0 Then

.ParagraphFormat.RightIndent = InchesToPoints(typParagraphStyle.strIndentRight)

Else

.ParagraphFormat.RightIndent = 0

End If

'''

blah

blah

blah

Assembling A List Template

Contact Me