I have been pulling my hair out so I might as well ask... I found some code below to create a bulleted list. On my machine the bullet is a black dot. My user wants to change the code so the bullet is a blue squeare.
Any idea what I need to change?
Thanks
Simi
.ListGalleries(wdBulletGallery).ListTemplates(1).Name = ""
.Selection.Range.ListFormat.ApplyListTemplate ListTemplate:=.ListGalleries(wdBulletGallery).ListTemplates(1), _
ContinuePreviousList:=False, ApplyTo:=wdListApplyToWholeList, DefaultListBehavior:=wdWord9ListBehavior
With .Selection
.ParagraphFormat.Alignment = wdAlignParagraphLeft
.Font.Bold = False
.Font.Size = 12
.TypeText ("some details1")
.TypeParagraph
.TypeText ("some details2")
.TypeParagraph
End With
Any idea what I need to change?
Thanks
Simi
.ListGalleries(wdBulletGallery).ListTemplates(1).Name = ""
.Selection.Range.ListFormat.ApplyListTemplate ListTemplate:=.ListGalleries(wdBulletGallery).ListTemplates(1), _
ContinuePreviousList:=False, ApplyTo:=wdListApplyToWholeList, DefaultListBehavior:=wdWord9ListBehavior
With .Selection
.ParagraphFormat.Alignment = wdAlignParagraphLeft
.Font.Bold = False
.Font.Size = 12
.TypeText ("some details1")
.TypeParagraph
.TypeText ("some details2")
.TypeParagraph
End With