Archive for the ‘Windows Mobile Information’ Category.
March 22, 2012, 11:08
Here a small tip:
To disable all Connection Manager Dialogs set the following registry key:
[HKLM]Software\Microsoft\Shell\Rai\:MSREMNET\Disable
“All”=dword:1
to disable only certain dialogs or notification bubbles, use IDs like IDS_RAS_CARRIER_DROPPED:
[HKLM]Software\Microsoft\Shell\Rai\:MSREMNET\Disable
“0″=dword:1
to disable multiple dialogs, simply define additional IDs. For example to disable dialogs for IDS_RAS_DEVICE_NOT_READY and IDS_RAS_NO_ANSWER:
[HKLM]Software\Microsoft\Shell\Rai\:MSREMNET\Disable
“3″=dword:1
“5″=dword:1
Have fun
List of all IDS values: DOWNLOAD:IDS dialog values - (Hits: 234, size: 13.02 kB)
December 20, 2011, 10:07
Hello
I want to summarize the role of function keys in Windows Mobile, former Pocket PC, as I got several questions each week on how to use or enable Function keys in this or that application.
Here is a simple information about how function keys work in Windows Mobile.
Continue reading ‘Windows Mobile – the no-go world of Function Keys’ »
Tags:
AllKeys,
Function Key,
Internet Explorer Mobile,
remote desktop mobile,
UnregisterFunc1,
windows mobile Category:
CodeProject,
Int*rm*c,
Keyboard,
kiosk mode,
Programming,
Tips,
Windows Mobile Information |
Comment
March 2, 2010, 12:19
If you want to lockdown a user of a Windows Mobile device to not send/receive SMS messages or eMails, you can use a blacklist. First enable Disallow policy on the device and then list all apps you dont like the user to run.
REGEDIT4
;Enable blacklist of applications that should not run
[HKEY_LOCAL_MACHINE\Security\Policies\Shell]
"DisallowRun"=dword:1
;Add entries to blacklist of applications that should not run
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\DisallowRun]
"1"="tmail.exe"
"2"="sms.dll"
"3"="poutlook.exe"
;add more here as "3", "4", "5", etc.
tmail.exe, sms.dll and poutlook.exe are responsible for message handling on the device. If you disallow them, the user cannot start them anymore.
February 26, 2010, 14:39
Unfortunately, there is no in depth information about the Pocket or Mobile Internet Explorer (PIE) comaptibility. So I can only give some suggestions. But I hope this informations will help you getting started and don’t run into trouble.First, although M$ states, that PIE is compatible to Internet Explorer 4.1, 5.0, 5.5 or 6.0, depending on the OS level you run on a windows ce based device, this is only a general statement:
Pocket Internet Explorer has been updated to support the following:
HTML 4.01
Extensible HTML (XHTML)
Cascading style sheets
Microsoft Jscript® version 5.5
Enhanced scripting and Document Object Model support
Wireless Markup Language (WML) 2.0 (XHTML + WML 1.x)
Internet Protocol version 6 (IPv6) in IPv4/IPv6 mixed-mode environments
New extensible imaging library
From TechEd powerpoint
HTML 3.2 Compliant
JavaScript 1.1 compliant
XML Object Model
SSL
Active X support (no download!)
=============================
HTML 3.2-based object model
Not the IE4 OM
Core script support:
Scripting against FORM elements
Scripting against the XML OM<
Not supported:
Dynamic frameset creation
Dynamic script generation
Window.open
If you try some more special functions of the desktop IE versions, you will find the limits very fast. In example, the OnKey() event is not supported in any of the actual CE OS versions (<=6). XML Dataislands support is very limitted.
Continue reading ‘The Pocket or Mobile Internet Explorer’ »