4
votes
What is the best source for information on COM error codes?
I always use WinError.h. That has the vast majority of Windows error codes of all sorts.
A key indicator to look out for is the Facility part of the code: the second most-significant byte. …
3
votes
Fastest api for rendering text in WinForms?
A Microsoft developer has posted a GDI vs. GDI+ Text Rendering Performance article on his blog which answers …
0
votes
How can I change the text color in the windows command prompt
Ultimately you need to call SetConsoleTextAttribute. You can get a console screen buffer handle from …
3
votes
How do you run CMD.exe under the Local System Account?
I would recommend you work out the minimum permission set that your service really needs and use that, rather than the far too privileged Local System context. For example, …
1
vote
What open source virtual private server program do you recommend with windows as host
Virtual Server 2005 R2 SP1 is free (registration required) and supports x64 hosts. It does not support x64 guests.
…
0
votes
Passing EXE data down to one or more DLLs
You could either:
put everything bar the very outermost shell into a 'common' DLL;
use a DEF file to generate export functions from your EXE.
The second is ver …
0
votes
mysqldump equivalent for SQL Server
If you can get DTS or Integration Services to connect to both servers, you can use the wizards to 'copy objects' from one server to another. 'Copy Database' requires that the two servers can authen …
5
votes
Clock drift on Windows
Clock ticks should be predictable, but on most PC hardware - because they're not designed for real-time systems - other I/O device interrupts have priority over the clock tick interrupt, a …
1
vote
Does the windows FILETIME structure include leap seconds?
Leap seconds are added unpredictably by the IERS. 23 seconds have been added since 1972, when UTC and leap seconds were defined. Wikipedia says "because the Earth's rotation rate is unpredictable i …
2
votes
Sending an arbitrary Signal in Windows?
Windows is not POSIX. It does not have signals. The only 'signals' that console programs get is if they call SetConsoleCtrlHandler, in which case it can be notified that the user has p …
1
vote
Why would the Win32 OleGetClipboard() function return CLIPBRD_E_CANT_OPEN?
The documentation says that OleGetClipboard can fail with this error code if OpenClipboard fails. In turn, if you read that documentation, it says:
"OpenCl …
4
votes
How do I test if another installation is already in progress?
See the description of the _MSIExecute Mutex on MSDN.
…
0
votes
Side effects of calling RegisterWindow multiple times with same window class?
Well, you might be able to avoid a call down into the kernel - RegisterClass seems to need to get down there - but window classes are per-process and per-module, so you shouldn't hurt anything by r …
0
votes
Windows API commctrl.h using application doesn’t work on machines without the Platform SDK
Common controls is a red herring. Your problem is that the Visual C++ 8.0 runtime - I assume you're using Visual Studio 2005 - isn't installed. Either statically link to the C/C++ runtime library, …
