|
-
Jun 6th, 2002, 04:24 PM
#1
Thread Starter
Addicted Member
Windows versions
Just will appreciate if anyone tell what will be returned by the GetVersion() function for Windows ME.
The code:
Private Declare Function GetVersion Lib "kernel32" () As Long
Public Function GetWinVersion() As String
Dim Ver As Long, WinVer As Long
Ver = GetVersion()
WinVer = Ver And &HFFFF&
GetWinVersion = Format((WinVer Mod 256) + ((WinVer \ 256) / 100), "Fixed")
End Function
Private Sub Form_Load()
MsgBox "Windows version: " + GetWinVersion
End Sub
And for Windows XP Professional the version is 5.01. Is the Windows XP Home Edition gives the same version?
-
Jun 6th, 2002, 09:16 PM
#2
Stuck in the 80s
For Windows ME it will be: 4.90
As for XP, I'm not sure, but it should be 5.Something for all versions.
-
Jun 6th, 2002, 09:22 PM
#3
Thread Starter
Addicted Member
-
Mar 10th, 2003, 12:05 AM
#4
Fanatic Member

prog_tom
JOIN THE REVOLUTION!!!! Dual T3 backedup science community.
http://physics.sviesoft.com/forum
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|