Difference between revisions of "Is64Bit"

From scripting
Jump to: navigation, search
(Created page with " Function Is64Bit() As Boolean If InStr(CATIA.SystemConfiguration.OperatingSystem, "64") <> 0 Then Is64Bit = True Else Is64Bit = False End If End Function Ca...")
 
(No difference)

Latest revision as of 06:58, 22 April 2017

Function Is64Bit() As Boolean
If InStr(CATIA.SystemConfiguration.OperatingSystem, "64") <> 0 Then
    Is64Bit = True
Else
    Is64Bit = False
End If
End Function