How to Get Windows 3.1 Version Number in VB with GetVersionID: Q92936
|
From a Visual Basic program, you can determine the Windows version by calling the Windows 3.1 API function GetVersion from the Windows kernel module. The GetVersion function can help your program accommodate differences in the way API calls operate between different versions of Windows (such as differences between API parameters or return values).
The code example below shows how to make the GetVersion function call,
which takes no parameters. The return value is a DWORD (double-word) value,
which translates into a long integer (32-bit value) in Visual Basic.
The GetVersion function changed in Windows 3.1 from a WORD value to
a DWORD (double-word) value. The low-order word returns the major (low
byte) and minor (high byte) version numbers of Windows, and the high-
order word returns the major (high byte) and minor (low byte) versions
of MS-DOS, if the function is successful.
For details on the GetVersion function, see pp. 469-470 in the "Microsoft
Windows Software Development Kit Programmer's Reference Vol. 2: Functions."
Declare Function GetVersion Lib "kernel" () As Long
Sub Command1_Click ()
I& = GetVersion()
Windows& = I& And &HFFFF&
Dos& = (I& And &HFFFF0000) / 65536
' The low byte is derived by masking off high byte.
Lowbyte$ = Str$(Dos& And &HFF)
' The high byte is derived by masking off low byte and shifting.
Highbyte$ = LTrim$(Str$((Dos& And &HFF00) / 256))
' Assign MS-DOS version to Text property.
Text1.Text = Highbyte$ + "." + Lowbyte$
Lowbyte$ = Str$(Windows& And &HFF)
' The high byte is derived by masking off low byte and shifting.
Highbyte$ = LTrim$(Str$((Windows& And &HFF00) / 256))
' Assign Windows version to Text property.
Text2.Text = Lowbyte$ + "." + Highbyte$
End Sub
"Microsoft Windows Software Development Kit Programmer's Reference Vol. 2: Functions", pp. 469-470.
Additional query words: 1.00 2.00 3.00
Keywords :
Version :
Platform :
Issue type :
Last Reviewed: June 22, 1999