Forum Post: AW: How to add Items in a microsoft .net combobox

  • Thread starter Thread starter Mike Fechner
  • Start date Start date
Status
Not open for further replies.
M

Mike Fechner

Guest
You will never ever find methods with hyphens (minus/dash/ -) in the name in any .NET class – as that is an illegal character in .NET identifiers. I don’t have too much experience with the plain ugly Microsoft Controls (I prefer the UltraControls) but the reference is here: http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox_methods(v=vs.110).aspx or here: http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.items(v=vs.110).aspx or here: http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.objectcollection_methods(v=vs.110).aspx Something like: comboBoxRoles:Items:add(cDescription) .

Continue reading...
 
Status
Not open for further replies.
Back
Top