Bullet textbox,VBA

  • Thread starter Thread starter Edward
  • Start date Start date
E

Edward

Hi everybody,
I have created a textbox with bullet using VBA
with ActiveWindow.Selection.TextRange.ParagraphFormat
.Bullet.Font.Name = "Wingdings"
.Bullet.Character = 110
end with
but this is only for the first level I can't find a way to access level 2
and level 3 and apply different bullets in my text ( to create something like
regular bodytext placeholder which works with different bullete in each level
)
Any suggestions?
 
It's been a while since I've played with this, but I seem to recall this
being harder than it should be. If I recall correctly, you actually need
to have the text in place before it will let you adjust the bullet
information for sub-bullets.
--David
 
Back
Top