Regsvr32.exe often times does not give very helpful error messages when it encounters a problem registering a COM DLL. If you’ve ever encountered: ‘**_Dllname_ is not an executable file and no registration helper is registered for this file type.**’, you know what I’m talking about. What Regsvr32 is really trying to say is that it encountered a problem when trying to invoke either LoadLibrary() on the DLL or a problem when calling GetProcAddress() on the DllRegisterServer entry point.
Read more...
Windows CE Networking Team WebLog : Interprocess Communication on Windows CE
(tags: windows mobile)
Implementing a Network Service on Windows CE
(tags: services.exe windows mobile)
Lately I’ve been trying to get jQuery working on IE Mobile 6.12 (IEm). Best I’ve managed is to mock up IEm versions of the subset of jQuery API methods that I needed for the project I’m working on. Below are my notes on the particular jQuery methods that presented challenges:
jQuery.clean() There are a couple of challenges with constructing DOM elements from text:
DOM elements can only be manipulated when attached to the current document, before you call appendChild(), removeChild() etc.
Read more...