StartMenuItemz
-
Hi, was wondering if anyone has ever tryed to implement a right click action on a MenuItem, ie: like the start menu does, u right click an item and it shows another Cmenu... i notice that when my appz context menu is popped up, u can press the windows button and nothing happens, ie: only one cmenu at a time, but then i realized that if the start menu is a Cmenu then it cant inherit from a system menu (which i believe MenuItem does). So anyone know of a completely rewritten menu control? or another way to go about this. (BTW it appears that a MEnuItem doesnt send windows messages to a nativewindow, ie u cant subclass it.) like this
Class MenuItemSubClass Inherits NativeWindow Sub WndProc(m as Message) MessageBox.Show m.msg.tostring 'nevers shows a single message End Sub End Class 'Usage Sub Form_Load dim mis as new MenuItemSubClass mis.assignhandle(aMenuItem.Handle) End Sub
ANY IDEAS??? (also drag n drop would be cool :laugh:)