
I have test the new EditorGadget() and have it modified with:
Read only + word selection:
SendMessage_(GadgetID(#Message), #EM_SETOPTIONS, #ECOOP_SET, #ECO_READONLY|#ECO_AUTOWORDSELECTION)
Background color:
SendMessage_(GadgetID(#Message), #EM_SETBKGNDCOLOR, #Null, RGB($95,$DD,$7A))
Text mode:
SendMessage_(GadgetID(#Message), #EM_SETTEXTMODE, #TM_PLAINTEXT, #Null)
Event mask:
SendMessage_(GadgetID(#Message), #EM_SETEVENTMASK, #Null, #ENM_LINK)
automatic URLs:
SendMessage_(GadgetID(#Message), #EM_AUTOURLDETECT, #True, #Null)
My problem is that I wan't to catch the click on a URL

I have the whole day with a lot of methods - without any success

Here is a VisualBasic example, that I have found:
http://www.visualbasicforum.com/t73845.html
Any idea

