Search Results

1
vote

Why would WaitForSingleObject return WAIT_FAILED

Closing a handle while the handle is being waited on can also cause undefined behaviour. …
1
vote

Force windows to refresh a disk FAT

Use Linux to create the partition as a hidden FAT32 partition. Linux will let you mount the partition and write files. Windows will not let you mount the partition and read files, and Windows wil …
-1
votes

Are Thread Input queues global?

There's an API that will let you merge your spyware's input queue with the user's banking application. This kind of thing is gradually getting closed down. …
0
votes

Force windows to refresh a disk FAT

As far as I can tell, Windows does caching at the disk level. However, if a partition has a type that Windows refuses to read or write (ext2, hidden FAT32, etc.) then that partition's contents sho …
3
votes

In .Net, what’s the better choice to code key presses in keyboard, key-up or keydown?

It doesn't matter if it's .Net or not, it matters what the user expects. Keydown is a good time to respond to the four arrow keys. Character input is a good time to respond to input of visible ch …
1
vote

How can a Windows service execute a GUI application?

Several people suggested WTSEnumerateSessions and CreateProcessAsUser. I wonder why no one suggested WTSGetActiveConsoleSessionId, since you said you only want to target one logged in user. …
1
vote

What is __stdcall?

I agree that all the answers so far are correct, but here is the reason. Microsoft's C and C++ compilers provide various calling conventions for (intended) speed of function calls within an applic …
0
votes

Why do some devices not enumerate with SetupDiGetDeviceInterfaceDetail()?

You say your device is present and accessible, but are you accessing your device directly or are you accessing a port by name and number COMn: I have a WinModem that is connected to my audi …
0
votes

When using Win32 code in your modern C++ app, should you use proper casting?

If lpMsgBuf is already a pointer to a T-string and if the API expects the pointer to point directly to a T-string then you shouldn't use any cast at all. In other words if the data type is already …
0
votes

Selected item in my CListCtrl shows ellipsis, despite having plenty of room!

MSDN doesn't seem to say if SetColumnWidth forces the contents to be redrawn automatically. …