The Win32 API is the core set of application programming interfaces (APIs) available in the Microsoft Windows operating systems. This tag is for questions about developing native Windows applications using the Win32 API.
8
votes
0answers
1k views
Can't open COM1 from application launched at startup
I'm using WinLIRC with IR receiver connected to serial port COM1 on Windows 7 x64. WinLIRC is added to Startup folder (Start->All applications->Startup) so it starts every time I log in. Very often ...
4
votes
0answers
23 views
DPAPI: Using CryptUnprotect before user logs in
I am using DPAPI to store an XML data. The data after CryptProtectData is stored in a file. In one of my use cases, this data needs to be decrypted before any user logs in to the workstation. Since, I ...
4
votes
0answers
18 views
Not receiving messages after sometime
I am using JNA to access User32 functions (I dont think it has got to do with Java here, more of concept problem). In my application, I have a Java process which communicates with the Canon SDK. To ...
4
votes
0answers
102 views
Changing how windows displays using Win API?
While I have some experience with the WinAPI I do not have a ton, so I have a question for people who do have much experience in it. My question concerns what the limit of our power is. Can we ...
4
votes
0answers
166 views
How do I view information about a HWND within visual studio while debugging?
Are there any well known tools or plugins I can use to get properties about HWNDs while debugging / stepping through Visual Studio? I know I can use Spy++ for these things, but it's cumbersome to do ...
4
votes
0answers
161 views
How can i track COM+ events call with Delphi?
I have a huge application that was made with COM+ Objects and i want to track/log the call of events of these components. The objective is to find the problems and refator that methods.
I have found ...
4
votes
0answers
172 views
Reproduce ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 error code from ReplaceFile
I am using the ReplaceFile Win32 function as part of an operation to get atomic behaviour.
Of the three special error codes for that function, I've been able to reproduce and recover (rollback) from ...
4
votes
0answers
567 views
Enable/Disable multiple monitors via Win32 API or NVidia API?
I'm trying to write a small utility that will enable/disable monitors under Windows 7 with my nVidia graphics card. (ie. "Extend the desktop onto this monitor", etc)
The reason is that my nVidia ...
3
votes
0answers
42 views
How to drop files onto .MAPIMail
Given some files (or shell file objects) how do i invoke the .MAPIMail registered shell extension handler with them?
The Question
i have some files on the computer:
...
3
votes
0answers
55 views
Windows - code to block toast notifications? (Win32/MFC desktop)
Everything I can find on toast notifications is about how to send them or fix problems with sending them.
I have a full-screen desktop application where I want to STOP toast from popping up while it ...
3
votes
0answers
115 views
WINAPI explorer shell document “details”
In a similar vein to this question, I'm after a way to pragmatically read the information in the "details" pane that is shown when you select "properties" in explorer.
For example in the screenshots ...
3
votes
0answers
65 views
TranslateAccelerator and Disabled Menu Items
In my application, I'm enabling/disabling menu items based on context - and if a text area has focus, I disable accelerators that would conflict with the navigation keys (e.g. Ctrl-Left/Right).
...
3
votes
0answers
153 views
How do I create a second window within a callback procedure? Win32
I'm trying to create a second window if a dialog box from my first window returns a certain way. Unfortunately, if I call CreateWindowEx() from within the callback process of the first window, it ...
3
votes
0answers
92 views
How do I create a Win32 control to enclose other Win32 controls?
The Setup: years ago, we developed a nice C++ cross-platform that managed many of the issues of writing common-code source between Mac OS X Windows. (we won't into the massive downsides of that ...
3
votes
0answers
188 views
How to print transparent images in Win32 (color key)
I am trying to print a transparent image in a Win32 application. The image has an alpha channel, but I could also live with a simple transparency mask.
When using the ::AlphaBlend method it is shown ...
3
votes
0answers
135 views
Is it possible to read csv file using 32 bit Microsoft text driver in 64 bit application
I have a requirement where i need to import some data from CSV file using Microsoft Text Driver.
My development environment is:-
Windows7 64 bit
Office 2007 (32 bit)
when i try to open a connection ...
3
votes
0answers
151 views
SwitchDesktop works momentarily but switches back after a moment
I've got some code to create a new desktop and launch a process into that desktop.
One a few select Windows XP machines, when this code runs, I can see it switch to the new desktop and start the ...
3
votes
0answers
244 views
Folder icon change doesn't take effect
I change the default system folder icon via registry key
Reg := TRegistry.Create;
try
Reg.RootKey := HKEY_LOCAL_MACHINE;
Reg.OpenKey('Software\Microsoft\Windows\CurrentVersion\Explorer\Shell ...
3
votes
0answers
307 views
Python win32api.mouse_event TypeError
import sys
import win32api, win32con
import pyHook
import pythoncom
def CursorLeft():
win32api.mouse_event(win32con.MOUSEEVENTF_MOVE, -1, 0)
...
3
votes
0answers
192 views
win32 controls (QWinHost) not painted on layered (ie. semi-transparent) widget (WS_EX_LAYERED)
I ported a win32 control using QWinHost, and put it on a layered (semi-transparent) widget. When I set WS_EX_LAYERED flag, then paint not occurred for win32 ported control.
SetWindowLong(winId(),
...
3
votes
0answers
205 views
WMI deviceID version win API device ID
I was wondering how to convert a deviceID from WMI (e.g. select * from WIN32_PnPEntity where service='monitor') to a win API device ID (e.g calling EnumDisplayDevices).
WMI gives a device id such as ...
3
votes
0answers
294 views
Delphi PeekMessage access violation Delphi 2009 Windows API
Periodically getting an access violation from a PeekMessage. This is not my call to PeekMessage, it's from Application.Run. Stack trace from MadExcept shows Application.Run calling PeekMessage which ...
3
votes
0answers
138 views
How to get the signer's company name from a memory signed file data?
I use the CryptQueryObject function to get HCRYPTMSG* phMsg.
The dwObjectType is CERT_QUERY_OBJECT_BLOB and the pvObject is a CERT_BLOB (set the memory data point and size) pointer. It can work in ...
3
votes
0answers
212 views
Extra mouse buttons with WIN32 API
Im currently using RawInput to get mouse input, but it seems to not detect more than 3 buttons. It says it has support for X1 and X2 as well, but none of my mice seem to trigger them. Ive looked ...
3
votes
0answers
200 views
WOW64 SetLayeredWindowAttributes LWA_ALPHA
I am displaying a dialog as a layered window using code like this:
SetLayeredWindowAttributes(modalDlg, 0, 179, LWA_ALPHA);
...and everything works nicely on 32 bit Windows. However in WOW64 this ...
3
votes
0answers
195 views
Unexpected RegNotifyChangeKeyValue() Behaviour
RegNotifyChangeKeyValue()
function can provide alerts to changes in the security of a registry key.
I, possibly mistakenly, expected it to alert the caller if the permissions
of the user calling ...
3
votes
0answers
79 views
Replacing memory mappings atomically on Windows
Is there any way to atomically replace a memory mapping on Windows?
On Unix, mmap() with MAP_FIXED will atomically replace the page mapped at the requested address.
But on Windows, MapViewOfFileEx() ...
3
votes
0answers
1k views
Find all threads of a process given process id
I am trying to find if there is a better way to find all thread ids that belong to the current process. It looks like using CreateToolhelp32Snapshot with TH32CS_SNAPTHREAD and iterating over the ...
3
votes
0answers
851 views
malloc returns NULL and sets errno to ENOMEM, but there is plenty of heap space available?
I have a situation in which malloc() returns NULL and sets errno to ENOMEM. But the CRT heap (which is growable) has plenty of memory to work with. At the time of malloc, my process memory is about ...
3
votes
0answers
367 views
Correct usage of SetDeviceGammaRamp
I'd like to add the ability to adjust screen gamma at application startup and reset it at exit. While it's debatable whether one should tamper with gamma at all (personal I find it useless and ...
3
votes
0answers
790 views
WinLockDLL.dll functions in Windows7
I'm running an app for testing students, which prevents them from doing anything but the test.
Naturally, the app blocks them from closing it, and blocks them from running the task manager (among ...
3
votes
0answers
174 views
How to disable VML in MSHTML
I'm using the MSHTML control in edit mode. When I copy and paste stuff from word to my control the MSHTML controls strips the standard HTML and keeps VML markup that's not very well supported out ...
3
votes
0answers
284 views
FindWindow error 183
Does anybody know what would cause the FindWindow function to return an ALREADY_EXISTS error (183)? A FILE_NOT_FOUND (2) I can understand, but why would it return a 183.
3
votes
0answers
162 views
Windows Identify monitor feature, can you invoke it?
When you go into screen resolution control panel in windows 7 the monitors are listed with numbers and there is an identify button that causes the ID's to show up on both displays.
Is there a way to ...
3
votes
0answers
176 views
Windows Mobile Performance & DirectShow
Currently I'm building an application that is an image filter that should run in real-time. It's filter that transforms image captured from the camera and displays a transformed image just like the ...
3
votes
0answers
236 views
How to get the driver letter from dbcc name in Windows?
I want to detect USB disk insertion in a Windows Service. And I use RegisterDeviceNotification function. IN DBT_DEVTYP_DEVICEINTERFACE, I can get dbcc name.
My question is: How can I know which ...
3
votes
0answers
1k views
IO Other Operations Performance Counter Explanation
I have received perfmon counters from customer site. We noticed unusual values in \COMPUTERNAME\Process(PROCESS_NAME)**IO Other Operations/sec**.
The best explanation for the counter I came up with ...
2
votes
0answers
60 views
WaitForThreadpoolWaitCallbacks returns immediately without waiting
What am I doing wrong here that WaitForThreadpoolWaitCallbacks returns immediately without waiting?
HANDLE hEvent = CreateEvent(0, FALSE, FALSE, 0);
...
PTP_WAIT Pwa = ...
2
votes
0answers
13 views
CryptUIWizImport and protection password
I need to programmatically import certificate into Windows store.
The CryptUIWizImport function works well but Windows asks user create additional password to protect the certificate.
But user can ...
2
votes
0answers
46 views
Drawing rounded and colored owner draw buttons
In my windows application I am creating child button windows using CreateWindow() API. I am marking the style of buttons to be BS_OWNERDRAW, because I want to color the same and also want to make them ...
2
votes
0answers
41 views
How to change all permisson of folder in python
i use python to add all allow or all deny permisson of folder:
info=win32security.DACL_SECURITY_INFORMATION
sd=win32security.GetFileSecurity(str(path),info)
acl=sd.GetSecurityDescriptorDacl()
...
2
votes
0answers
28 views
How to create an OpenGL context with a specific graphics driver?
Some computers have more than one graphics card/chipset installed, even when (for example for laptops) they don't have more than one monitor.
I'm having trouble with a laptop system that's got both ...
2
votes
0answers
61 views
Focus not returning to CView after dismissing Message box
Within a derived CView class' method, I am calling the CWnd's MessageBox method. This is a docked view, not an MDI child. Upon return from MessageBox, focus goes to the Active MDI child, not back to ...
2
votes
0answers
95 views
Minimizing DirectX 10 Window on Alt Tab
I've been trying to get my DirectX 10 application to properly handle alt tabbing from full screen. When I alt tab from full screen, the application automatically goes into windowed mode.
I tried ...
2
votes
0answers
39 views
Reading Excel's Edit box
After some digging, it turns out that Excel's edit control is not standard Windows TextBox and I'm seemingly unable to do GetWindowText() on it. Doing a Spy on it reveals it belongs to a class named ...
2
votes
0answers
59 views
wm_gettext returning blank until tabbed through
I am creating an application that is supplimenting the data provided on our third part application. They don't have an open API so I have been force to using WM_GETTEXT to get the information that we ...
2
votes
0answers
52 views
Formview not showing
I've created a formview using the Visual Studio resource editor but I can't get it to show.
The procedure to handle it's messages is this:
BOOL CALLBACK DlgProc(HWND hDlg, UINT message, WPARAM ...
2
votes
0answers
75 views
C# DWM transparent windows effect
So I've got a project building a Windows Flip (Alt+Tab) type app to be driven using the Kinect.
I've got all my handles and thumbnails coming through nicely along with window selection and a few of ...
2
votes
0answers
29 views
How to get the top frame height of a dwm extended and maximized window?
I created a window using dwmextendframeintoclientarea, everything is ok except the top frame height is less than the value I settled while the window is maximized.
So the text drawn using ...
2
votes
0answers
166 views
displaySwitch.exe code replacement for windows (pre windows 7)
I'm writing an app I'd like to be backwardly compatible to some extent on XP, or at the very least windows vista.
EDIT FOR CLARITY: I need to be able to do what the first code snippet below does, but ...


