A
Associates
Hi,
I wonder if anyone might be able to help me with bullet point and bullet
number in word 03.
I have two macros, insertBulletPoint and insertBulletNumber that help
insert bullet point and bullet number to the document respectively. However,
the problem i have here is that say, i inserted bullet points first as
follows (pretend that the circle i am using here represents a solid dot/circle
o Grocery shopping
o Clothing
o Christmas shopping
Then, i inserted bullet number (1,2,3,...) after the bullet points. The
result was it was indented further in as follows
1. Project A
2. Project B
My question is how to make them lined up the same (or the same indentation)
regardless whichever goes first.
I got the code for insertbulletnumber macro here that is from the macro
recording result
With ListGalleries(wdBulletGallery).ListTemplates(1).ListLevels(1)
.NumberFormat = ChrW(61623)
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleBullet
.NumberPosition = CentimetersToPoints(0.63)
.Alignment = wdListLevelAlignLeft
.TextPosition = CentimetersToPoints(1.27)
.TabPosition = CentimetersToPoints(1.27)
.ResetOnHigher = 0
.StartAt = 1
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.Color = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = "Symbol"
End With
.LinkedStyle = ""
End With
ListGalleries(wdBulletGallery).ListTemplates(1).Name = ""
Selection.Range.ListFormat.ApplyListTemplate
ListTemplate:=ListGalleries( _
wdBulletGallery).ListTemplates(1), ContinuePreviousList:=False,
ApplyTo:= _
wdListApplyToWholeList, DefaultListBehavior:=wdWord10ListBehavior
Thank you for your help in advance
I wonder if anyone might be able to help me with bullet point and bullet
number in word 03.
I have two macros, insertBulletPoint and insertBulletNumber that help
insert bullet point and bullet number to the document respectively. However,
the problem i have here is that say, i inserted bullet points first as
follows (pretend that the circle i am using here represents a solid dot/circle
o Grocery shopping
o Clothing
o Christmas shopping
Then, i inserted bullet number (1,2,3,...) after the bullet points. The
result was it was indented further in as follows
1. Project A
2. Project B
My question is how to make them lined up the same (or the same indentation)
regardless whichever goes first.
I got the code for insertbulletnumber macro here that is from the macro
recording result
With ListGalleries(wdBulletGallery).ListTemplates(1).ListLevels(1)
.NumberFormat = ChrW(61623)
.TrailingCharacter = wdTrailingTab
.NumberStyle = wdListNumberStyleBullet
.NumberPosition = CentimetersToPoints(0.63)
.Alignment = wdListLevelAlignLeft
.TextPosition = CentimetersToPoints(1.27)
.TabPosition = CentimetersToPoints(1.27)
.ResetOnHigher = 0
.StartAt = 1
With .Font
.Bold = wdUndefined
.Italic = wdUndefined
.StrikeThrough = wdUndefined
.Subscript = wdUndefined
.Superscript = wdUndefined
.Shadow = wdUndefined
.Outline = wdUndefined
.Emboss = wdUndefined
.Engrave = wdUndefined
.AllCaps = wdUndefined
.Hidden = wdUndefined
.Underline = wdUndefined
.Color = wdUndefined
.Size = wdUndefined
.Animation = wdUndefined
.DoubleStrikeThrough = wdUndefined
.Name = "Symbol"
End With
.LinkedStyle = ""
End With
ListGalleries(wdBulletGallery).ListTemplates(1).Name = ""
Selection.Range.ListFormat.ApplyListTemplate
ListTemplate:=ListGalleries( _
wdBulletGallery).ListTemplates(1), ContinuePreviousList:=False,
ApplyTo:= _
wdListApplyToWholeList, DefaultListBehavior:=wdWord10ListBehavior
Thank you for your help in advance