Jump to content

Intercept right click and block context menu in a RichEdit


Recommended Posts

Hi all. When i make a rigth click in a WindowsForms10.RichEdit20W.app, it appears a context menu with suggestions to correction of the text. But, i want to intercept the right click to call a function or show the context menu when i have or not selected text. How i can stop the context menu every time i make a right click? Thanks for any help!

 

Link to comment
Share on other sites

 

#include <Misc.au3>
HotKeySet("{h}", "Terminate")

While 2
If _IsPressed(02) Then
    $hndl = WinGetHandle("[Active]")
    WinActivate($hndl)
    Send("{ESC}")
EndIf
WEnd

Func Terminate()
    Exit
EndFunc

 

Edited by Starstar

Life is like a coin. You can spend it Anyway as you wish and for your kind information. "you can spend it only once."

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...