Tagged Questions
1
vote
0answers
97 views
Is there an Windows API routine for getting the timezone name in English?
The Windows GetTimeZoneInformation function returns StandardName and DaylightName members of the resultant TIME_ZONE_INFORMATION structure localized according to the current user default UI language. ...
0
votes
1answer
193 views
How to check that the OS is at least Windows XP SP3? [duplicate]
Possible Duplicate:
How do I determine if a computer is running XP Service pack 3
There's a ton of C++ code illustrating how to check that OS is Windows XP, but I need to know if it's at ...
1
vote
3answers
786 views
How accurate is Sleep() or sleep()
I'm trying simulate a key down and key up action.
For example: 2638 millseconds.
SendMessage(hWnd, WM_KEYDOWN, keyCode, 0);
Sleep(2638);
SendMessage(hWnd, WM_KEYUP, keyCode, 0);
How would you know ...