Hey you all,
I'm working on a school project in visual basic, and I'm having a small issue.
I'm creating a class which features a toolstrip, which will be included in every form. But I'm having issues adding second level dropdownitems.
It's no problem adding a standard one level dropdownitems
example:
Which are added like this:
Code:
bestandHoofdMenuItem.DropDownItems.Add(afdrukkenMenuItem)
The issue I'm having (let's call it lack of knowledge), is how to add a second level to the dropdown menu.
like this:
I already searched on the MSDN pages of microsft, but they all do it in design mode, which is obviously not working for me as I'm putting it in a class.
Help is appreciated.