openPush - XAML for portable Applications

Home | Dokumentation | Codesamples | Changelog | Bestellen | Download | FAQ | Impressum |

openPush :: Samples


Tutorial rechner
RSS News Reader
Register and Use TOMTOM as OCX
Sample Form
SQLite3 Sample
Using COM with Winword
Using COM with Excel
Pocketoutlook eMail
Printboy SDK Sample unter Windows Mobile 5
Fill Grid Controls
Fill Tree Controls
Fill Tree Controls with XML
File Selector Box
Draw on Bitmaps - Chart Sample
Include Shockwave Flash
Addresses with XML Database
SQlite3 Query Manager for Windows Mobile 5
Fahrtenbuch Windows Mobile 5 mit XML Export
Internet Provider Setup (ISP) - Windows Mobile 5 / Pocket PC 2003
Sample Datamatrix Decoder Windows Mobile 5
GPS Tester
Application default XML Script
Richtext Sample XML Script
using regular expression (regexp) to validate forms
Barcodescan with EAN 128 decoder

moScript.xml : Tutorial Rechner (Video)
<?xml version="1.0" encoding="ISO-8859-1" ?>
 
<root>
	<form id="myform">
		<edit id="field1" x="5" y="30" h="20" w="100" onclick="rechne"/>
		<edit id="field2" x="5" y="60" h="20" w="100" onclick="rechne"/>
		<edit id="field3" x="5" y="90" h="20" w="100"/>
	</form>
 
	<script lang="JScript">
		<![CDATA[
			function init() {
				mo.LoadForm("myform");
			}
			function uninit() {
			}
			function rechne() {
				field3.text = eval(field1.text + " + " + field2.text);
			}
		
		]]>
	</script>
</root>