Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[vba] square bullet

130 views
Skip to first unread message

Madla

unread,
Jun 2, 2004, 10:45:00 PM6/2/04
to
I'd like to set a bulleted list to sqare bullets from another bullet
style.

With .Paragraphs(5, 5)
With .
ParagraphFormat
With .Bullet
.
Visible = msoTrue
.Type = ppBulletUnnumbered

End With
End With
End With This will
get me to the round bullets.
I tried to find a .style but the styles only seem to apply to numbered
bullets.
But how do I get it to use square bullets?

Thanks in advance...martin

David M. Marcovitz

unread,
Jun 3, 2004, 9:35:09 AM6/3/04
to
Try throwing these lines in there:

.Font.Name = "Wingdings"
.Character = 167
I think they need to go after your first With.

I got this by recording a new macro and changing something to a square
bullet. This is part of the resulting code. I did this on my PC, so if
it doesn't work for you, try recording a macro on your Mac and see what
you get.

--David


David M. Marcovitz, Ph.D.
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.loyola.edu/education/PowerfulPowerPoint/

Madla <deadend> wrote in news:20040602214500770-0500
@msnews.microsoft.com:

0 new messages