Thread: [Solved] Bulletted List Creation
View Single Post
 
Old 11-12-2013, 03:23 PM
macropod's Avatar
macropod macropod is online now Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

1. After:
.Paragraphs.First.Style = "Normal"
insert:
.Paragraphs.First.Range.Style = "Strong"

2. Before 'With wdDoc.Range', add:
Code:
With wdDoc.Styles("Normal").ParagraphFormat
  .SpaceBefore = 0
  .SpaceAfter = 0
End With
3. After '.Style = "BulletB"', insert:
Code:
With .Paragraphs.First.Range.Words.First
  .Style = "Emphasis"
  .Next.Words.First.Style = "Emphasis"
End With
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote