Re: Popupmenu in textboxes
The proper way would be to subclass it.
I'm not sure of how to remove the menu completely but have a look at Randy Birch's site http://www.mvps.org/vbnet
This may give you some tips.
If all you want to do is use your own popup menu that do the following.
private Sub Text1_MouseDown(Button as Integer, Shift as Integer, X as Single, Y as Single)
Text1.Enabled = false
PopupMenu Mymenu
Text1.Enabled = true
End Sub
This will replace the default menu with your own popup menu.
Hope this helps.