Fonts and comboboxes

I know how to list the fonts in a combobox:

Public Sub ListFonts()
Dim FontName As FontFamily
For Each FontName In System.Drawing.FontFamily.Families
Form1.Tool_Font_Fonts.Items.Add(FontName.Name)
Next
End Sub

This works very well; however, I do have a little challenge. While the fonts are bing populated I would like to display the style it's self, such as:

Tahoma
Arial
Verdana
Time New Roman

Is there any code out there that some one knows? I would really like to add this litte feture to my program.

I'm using VB 2005 Express if that makes any difference.

Thanks

[920 byte] By [Wellnow] at [2007-12-24]
# 1
There is a sample on the vb-tips website.
KenTucker at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic Language...