
-----------------------------------
Kyle Biro
Wed Dec 11, 2013 10:49 pm

Help with Visual C# Combo Boxes
-----------------------------------
I've created a combo box and I'm trying to add all the installed fonts to it but nothing shows up when I run the program. 
I also have another combo box that should add the numbers 10 to 75 to represent font sizes.

I'm fairly new to C# and I'm just stuck with this. Also, please forgive any formatting mistakes I make as I'm new to the forums. Any help would be appreciated.

How I attempt to get the fonts and add them to the combo box.

void InstalledFonts()
{
    InstalledFontCollection fonts = new InstalledFontCollection();

    for (int i = 1; i < fonts.Families.Length; i++)
    {
        tb_Font.Items.Add(fonts.Families

How I try to add the numbers to the combo box

void FontSize()
 {
    for (int fntSize = 10; fntSize 