Project and code list
Here I will publish information about projects/code/ideas I am currently working on or thinking of.
XML (Int*rm*c related)
Class to serialize and deserialize XML files in CSharp. Easy creation of new conform xml file using csharp class. Easy xml parsing.
QR Code launcher
Do you know these QR code barcodes that lead to URLs, contain an eMail address, have business card infos or others inside? I did a small app that parses these informations using zxing (Compact Framework) and launches the appropiate application on your windows mobile phone.
See http://www.hjgode.de/wp/2012/11/09/mobile-development-analyze-qrcode-content-on-windows-mobile/
QR code encode decode
Although decoding is done very well on ruggedized Intermec Handheld computers, there is no additional parsing or QR code generator available. ZXing, zbar and twit88 open source QR code libraries can decode gray scale bitmaps or encode data to QR barcodes.
see http://www.hjgode.de/wp/2012/11/09/mobile-development-analyze-qrcode-content-on-windows-mobile/
Tools lib (CF)
lib to hold functions that I use often. For example AppPath.
eMdi2eMail (CF)
App that uses eMDI (Intermec DocumentCapture) to capture leads and send them as eMail
tasker2(CPP)
App to start stop processes periodically
DevHealthXML(CF)
Tastapp to read Intermec device health status about Battery, Firmware and others
WebTCO(CF)
App that reads the general AbuseCount of Intermec device and publishs the info using a web server (compactWeb).
WLAN-WWAN switching(CF, CPP)
Testapp to start a WWAN connect (ConnectionManager), release WWAN, HangUp WWAN, start Wifi and stop Wifi connection.
Remote Desktop Mobile autologin(CPP)
App to start RDM with autologin (see my Blog)
DoHibernate(CPP)
Tool to shutdown Intermec devices (Cx7x) after period of sleep to extend battery life.
LoadConfigXML(CF,PC)
PC and WM apps to write/read encyrpted xml config (WLAN access parameters).
ImportKeymap
Tool to import and apply Intermec keyboard mapping files.
Delay(CPP)
App to pause execution inside synchronous script, batch or cmd files
…
Agenda: CF=Compact Framework, CPP=C/C++. All apps are running on Windows Mobile/CE devices except otherwise noted.
Leave me a note at hjgodeXYZgmail.com to get more infos on a project.








http://www.led-mg.de
Hi. Im interested in the QR code encode decode project of yours. Could you share me the source code as I need QR Code encoding and decoding in .NET Compact Framework.
Hello jeraldo
I did not re-invent the wheel for the QRcode barcode generator. There is a great open source code at http://www.codeproject.com/Articles/20574/Open-Source-QRCode-Library.
What I did is a QRcode decoder with options like Android or iOS offers. That means if you scan a qrcode with an URL, the tool can open the web browser with the URL.
If you need the above, I can post it.
~josef
PS: updated QRcode generator/decoder is at http://code.google.com/p/qrcode-encode-decode/source/browse/#svn%2Ftrunk%2FQRCode
Thanks for the response. I guess Ill have to work with the Open Source QRCode Library you gave me. Tried it before from CodeProject but couldnt make it run.
As for the Android QR decoder, also have a project that requires that too. Ive already used a library called zbar for QR decoding, but the one I need now needs to have a UI on the scan activity. Does yours have one?