label objects?
Using context menu, i want to be able to right click and add a label and name the label what ever i want and be able to move it where i want. is this posible? if so please explain. thanks in advance!
You can add items to the contextmenustrip programatically.
[highlight="VB.Net"]ContextMenuStrip.Items.Add("Bla bla bla")[/highlight]
Now use the appropriate event and insert an appropriate object rather than just "Bla bla bla" as string. It has further options - use intellisense.