[fpc-pascal] WinCE api calls info

Mattias Gaertner nc-gaertnma at netcologne.de
Sat Sep 13 22:29:47 CEST 2008


On Sat, 13 Sep 2008 17:13:31 -0300
"Felipe Monteiro de Carvalho" <felipemonteiro.carvalho at gmail.com> wrote:

> > where can I find a list of available api calls for WinCE/Arm ?
> 
> Please note that your post is ambiguous. It is not clear what API you
> are trying to use. In the first post it seams to be the Windows CE API
> developed by Microsoft, which you can find searching in google for the
> following example string:
> 
> site:msdn2.microsoft.com GetWindow CE
> 
> In the second post it seams that you are talking about the Lazarus
> APIs, which are documented in the wiki and here:
> 
> http://wiki.lazarus.freepascal.org/Lazarus_Documentation
> 
> http://lazarus-ccr.sourceforge.net/docs/lcl/
> 
> > I need to ..... set the cursor postion
> 
> uses Forms;
> 
> Mouse.CursorPos.X := 80;
> Mouse.CursorPos.Y := 80;

The above won't do anything.
Use this:

Mouse.CursorPos:=Point(80,80);


Mattias



More information about the fpc-pascal mailing list