forum

Home / DeveloperSection / Forums / how to set default value for comboBox?

how to set default value for comboBox?

Anonymous User191728-Jan-2014

Hey I am making a comboBox that is holding a list of all the fonts name on my system, however at the beginning it does not hold any value and user needs to click on it to open it and select an item from the list. my question is how to set the default value for my comboBox (for example 'Arial') in case if nothing has been selected by the user and not to give error.

        foreach (FontFamily fnt in fonts.Families)

        {

            comboBox1.Items.Add(fnt.Name);

        }


Updated on 28-Jan-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By