I would like to create a windows service in .NET that runs on WinMo 6.x….
There r a lot of documentation for how to do that in MFC (and non-MFC)
http://msdn.microsoft.com/en-us/library/ms838599.aspx
but I can’t find any pointers for .NET stuff, is it even doable?
Thanks,
I’m pretty sure (not 100%) you can only create a native service DLL (which means no .Net for this).
A workaround is to create a console app (or a regular app that does everything from its Main method) and drop it in the
/Windows/Startup/folder. Your app will then be started automatically every time the device is reset. There are good reasons not to do this, however, since a WinMo device is limited in how many apps can be running like this.