Hi all,
how to identify the version of windows mobile?
Thanks for your response
Best regards,
Ugo
how to identify the version of windows mobile?
- Antonio Linares
- Site Admin
- Posts: 42537
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 31 times
- Been thanked: 77 times
- Contact:
Re: how to identify the version of windows mobile?
Ugo,
Here you have a working example:
Here you have a working example:
Code: Select all | Expand
// Check Windows Mobile version
#include "FWCE.ch"
function Main()
local aVersion := GetVersion()
MsgInfo( "Major version: " + Str( aVersion[ 1 ] ) + CRLF + ;
"Minor version: " + Str( aVersion[ 2 ] ) + CRLF + ;
"Build number: " + Str( aVersion[ 3 ] ) + CRLF + ;
"Platform Id: " + Str( aVersion[ 4 ] ) )
return nil