How to get rid of mouse right click popup
-
I have a textbox control that gets incremented by one whenever I right click in it. This works fine, however I also get the standard 'edit' popup box as well that appears. Is there a way to cancel this popup box from appearing? Thanks.
.NET? Override WndProc and capture the corresponding message :-) greetz ;-) *Niels Penneman*
Software/Dev Site
Personal Site
-
.NET? Override WndProc and capture the corresponding message :-) greetz ;-) *Niels Penneman*
Software/Dev Site
Personal Site
Yes, I'm using Net. I looked up WndProc in the MSDN library, but can't really figure out what to do here. I know that somehow I'm supposed to trap this popup menu so that when it appears, I just disreguard it. Thing is I'm not really sure how to accomplish that. I'll play with it a bit more and see what I can get to happen. Thanks.