I wonder if some of you would be kind to run the following and let me know what you get.
Minimum supported client: Windows 2000 Professional
Minimum supported server: Windows 2000 Server
I have XP Pro SP3 and get
156250 156250 1
Thanks
Minimum supported client: Windows 2000 Professional
Minimum supported server: Windows 2000 Server
Code:
#Compile Exe #Dim All #Include "WIN32API.INC" Function PBMain( ) As Long Local lpTimeAdjustment, lpTimeIncrement, lpTimeAdjustmentDisabled, result As Long result = GetSystemTimeAdjustment( lpTimeAdjustment, lpTimeIncrement, lpTimeAdjustmentDisabled ) If IsFalse(result) Then MsgBox "Function failed" Else MsgBox Str$(lpTimeAdjustment) + Str$(lpTimeIncrement) + Str$(lpTimeAdjustmentDisabled) End If End Function
156250 156250 1
Thanks
Comment