LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

determine with OS is running, labwindows

I need to determine which OS is running 98,ME,XP etc. under labwindows/cvi?
0 Kudos
Message 1 of 4
(3,201 Views)
The Programmer's Toolbox has GetWinOSVersion().
Add ..\CVI\toolslib\toolbox\toolbox.lib to your project.
0 Kudos
Message 2 of 4
(3,198 Views)
Sorry: add the .fp file, not the .lib file.
..\CVI\toolslib\toolbox\toolbox.fp
0 Kudos
Message 3 of 4
(3,195 Views)
GetWinOsVersion() in the Programmer's Toolbox returns the same numeric info as the SDK function GetVersionEx().
The numeric info is translated into the version name in the table here
or in the C++ code example from Microsoft here.
0 Kudos
Message 4 of 4
(3,190 Views)