FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Pocket PC how to identify the version of windows mobile?
Posts: 283
Joined: Sat Oct 15, 2005 06:40 AM
how to identify the version of windows mobile?
Posted: Wed Jan 14, 2009 08:23 AM

Hi all,

how to identify the version of windows mobile?

Thanks for your response

Best regards,
Ugo

Ciao, best regards,

Ugo
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: how to identify the version of windows mobile?
Posted: Thu Jan 15, 2009 10:24 AM
Ugo,

Here you have a working example:
// 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
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 283
Joined: Sat Oct 15, 2005 06:40 AM
Re: how to identify the version of windows mobile?
Posted: Thu Jan 15, 2009 01:10 PM

Antonio,
thank you.

Ciao, best regards,

Ugo

Continue the discussion