How do I programatically access menu strip item subitems?
I can get to top level menu items via MenuStrip.Items.Item(x), but how do I
get to the .DropDownItems collection from there?
Example:
File <-- I can get to this MenuStrip.Items.Item(0)
Exit <-- I can not get to th...
more >>
I have a panel with a bunch of controls on it. I want to be able to set the
readonly property on the control ...but only the client area portion so that
the scroll bars continue to work but none of the controls can be edited. Is
there a way to get the client area control and set it's propertie...
more >>
I added to PropertyBag the ability to pass an array of strings for an enum -
http://www.davidthielen.info/programming/2007/05/passing_an_enum.html
--
thanks - dave
david_at_windward_dot_net
http://www.windwardreports.com
Cubicle Wars - http://www.windwardreports.com/film.htm
...
more >>
Hi
I want to have a combobox with some commands in it and a data source.
Basically the list should look like
command1
command2
-----------
data1
data2
data3
To solve this problem i decided to derive my own combo box form
standard ComboBox control.
I exposed 2 properties in this clas...
more >>