-
Popup Menue?
Hi,
i want a popup menu in my textfield to select the following code.
If you know Dreamweaver you should know what i want to have.
Sample:
You type "<"
he shows popup "<Script>|<b>|<font>" etc.
but how can i put a popup like this in my programm?
thank you
Jens
-
Try something like this:
Dim mnuContextMenu as New ContextMenu()
Dim mnuItemNew as New MenuItem()
mnuItemNew.Text = "&New"
mnuContextMenu.MenuItems.Add(mnuItemNew)
Then use the show method of the contextmenu, i think this method have two parameters, one is the associate control of context menu.