WIn32-Events & Scintilla

BlitzMax Forums/BlitzMax Programming/WIn32-Events & Scintilla

MrCredo(Posted 2007) [#1]
i plan to use scintilla gadget... the problem is, that i can't get scintilla-events...

i found how to do this with C++ (last topic)
http://scintilla.sourceforge.net/Steps.html

i also use AddHook(EmitEventHook, eventfunc) in blitzmax
at this way i get more events... but only few from scintilla... it looks that blitzmax eats all other events


grable(Posted 2007) [#2]
Since Scintilla sends its events to the parent window, you could replace the WindowFunc of the parent with your own.

Either create your own parent window and handle it manually, or use a Panel.


MrCredo(Posted 2007) [#3]
i tested panel - but this do not work
i do not plan to create my own windows using winapi

but i have no plan how can i replace WindowFunc


grable(Posted 2007) [#4]
Check out the example in this thread, it shows how to replace the windowfunc.
Handling WM_DEVICECHANGE


MrCredo(Posted 2007) [#5]
i see many times ***** CONTENT UNAVAILABLE *****
i don't know why...

can you post this code here?


grable(Posted 2007) [#6]



grable(Posted 2007) [#7]
I have no idea why the code wont show, if i edit the posts the code is still there.

weird, anyone else having trouble like this??

In the meantime try this link http://grable0.googlepages.com/WM_DEVICECHANGE.bmx


MrCredo(Posted 2007) [#8]
thank you, i will check this code...