Update Text in Combobox on Visual Studio C# -


i have problem on update text in combo box. have data on combo box if data not available, want type self. how can that?

from designer :

you need goto items property of combobox add items.

from coding :

combobox1.items.add("item1"); combobox1.items.add("item2"); combobox1.items.add("item3"); 

Comments

Popular posts from this blog

python 3.x - Mapping specific letters onto a list of words -

javascript - jquery or ashx not working -

inno setup - TLabel or TNewStaticText - change .Font.Style on Focus like Cursor changes with .Cursor -