In this fixing session of Aurel Edit i stuck little bit with
TOOLWINDOW - FindWindow
In older version i just use :
fWindow = CreateWindowEx ( WS_TOOLWINDOW|WS_EX_TOPMOST,wcx.lpcClassName,"Find/Replace...", 524288 , 600, 160, 412, 300, 0, 0, null, 0)
524288 is just ws_sysmenu
and as result when i click on Find button i get nothing... what?
then i figured that I must use registered CLASS NAME?
and it is "Oxygen"
so now is:
fWindow = CreateWindowEx ( WS_TOOLWINDOW|WS_EX_TOPMOST,"Oxygen","Find/Replace...", 524288 , 600, 160, 412, 300, 0, 0, null, 0)