Page 1 of 1

oWnd:line/oWnd:bLClicked

Posted: Sat Jul 29, 2006 8:15 am
by Otto
Are these functions ready?
Regards
Otto
oWnd:line()


ACTIVATE WINDOW
ON PAINT
ON PAGERIGHT
ON PAGELEFT
ON RIGHT
ON LEFT
ON UP
ON DOWN
ON PAGEUP
ON PAGEDOWN

oWnd:brClicked
oWnd:bLClicked
oWnd:bLButtonUp
oWnd:bMMoved

Posted: Sat Jul 29, 2006 11:11 am
by Antonio Linares
Otto,

You can easily check them for yourself reviewing source\classes\window.prg and include\fwce.ch (search for ACTIVATE WINDOW). Thanks

Posted: Sat Jul 29, 2006 2:53 pm
by Otto
METHOD Line
does not seem to be there. Can we take the code form FWH?
Regards
Otto

Posted: Sat Jul 29, 2006 4:33 pm
by Antonio Linares
Otto,

With some of them, yes, you can take them from FWH, but with others you will find unresolved externals from Windows Mobile.

Posted: Sun Jul 30, 2006 5:16 am
by Otto
Hello Antonio,
if I change some lines in window.prg how to compile and link?
Thanks in advance
Otto

Posted: Sun Jul 30, 2006 12:06 pm
by Enrico Maria Giordano
The easiest way is to compile it as it were a PRG of your application.

EMG

Posted: Sun Jul 30, 2006 6:52 pm
by Otto
Hello Enrico,
could you post an example of buildce.bat which include also windows.prg.

Thanks in advance
Otto

Posted: Sun Jul 30, 2006 7:00 pm
by Enrico Maria Giordano
I don't have one at hand but basically you have to add

Code: Select all

%hdir%\bin\harbour window.prg /n /i..\include;%hdir%\include /p %2 %3 > clip.log
and modify

Code: Select all

%vcdir%\bin\clarm -TP -W3 -c /DARM /DUNICODE /I%hdir%\include /I..\include %1.c window.c
or something very similar.

EMG