Thanks for the responses. The application just crashes horribly as you try
to run it. I suspect part of the problem is that I've had to use several
platform specific P/Invoke calls due to limitations of the CF. For example,
I've declared this for "GetTickCount" for use on WinCE:
[DllImport("coredll.dll")]
public static extern uint GetTickCount();
But the same version on Windows XP would be:
[DllImport("kernel32.dll")]
public static extern uint GetTickCount();
I am assuming I *might* be able to deal with thus using the preprocessor
(??).
I just don't know if that's the only issue I'll have to deal with, hence the
question. For example, I note that when I "Debug" my application in VS 2005,
it wants to deploy it to a Windows CE 5.0 device...and I can't stop it
trying to do this!!
Thanks,
Alain
"Anders Eriksson" <
and...@gmail.com> wrote in message
news:klqfr...@news7.newsguy.com...