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.
0
votes
0answers
7 views
How to change the apparent height of a Combobox control with the dropdownlist but not ownerdraw style?
Background: In a certain dialog there are several controls in a row. I would like all of them to have the same apparent height. However for a combobox with the CBS_DROPDOWNLIST style and no ...
0
votes
0answers
9 views
How to catch WM_COMMAND message in child-child control
I want to handle WM_COMMAND message sended when button clicked. But the problem is the button not being direct child of main window. So I decided to use old-style sublassing.
So, I am able to handle ...
1
vote
0answers
30 views
Win32 Children windows don't appear
I don't know how to force child window to appear immediately after pressing the button.
Few notices:
1.Similar windows created during WM_CREATE appears with no problem.
2.Those added by button ...
0
votes
1answer
19 views
c++ flashing when rendering directx elements over a win32 camCaptureWindow
I am creating an application that uses directx to render images over a win32 capture window from a webcam, but I'm the window is flashing every other frame. (This seems to be coming from directx ...
0
votes
2answers
26 views
How to call a function in context of another thread?
I remember there was a way to do this, something similar to unix signals, but not so widely used. But can't remember the term. No events/mutexes are used: the thread is just interrupted at random ...
0
votes
0answers
21 views
C++ Win32 API Shell_NotifyIcon with modify flag always fails
I have been trying to use the Shell_Notify API of Windows for the app I am making. By using Shell_NotifyIcon, I am successfully able to add an icon to the taskbar when my app starts using the ...
1
vote
2answers
49 views
What's the logical difference between PostQuitMessage() and DestroyWindow()?
In my demo kinda app
case WM_CLOSE:
DestroyWindow(hndl);
return 0;
and
case WM_CLOSE:
PostQuitMessage(0);
return 0;
do the same. What's different behind the curtains when calling ...
0
votes
0answers
16 views
Wininet error 12003 ftpOpenFile
I am trying to write a file to a drivehq.com server. The file does not exist on local disk, nor on the ftp server, so does FtpOpenFile Create a file for me automatically?
I am getting error 12003 and ...
0
votes
2answers
40 views
Undefined reference to WinMain@16 in C++
i was taking the MSDN lesson for programming windows with C++ so i tried their code:
#ifndef UNICODE
#define UNICODE
#endif
#include <windows.h>
LRESULT CALLBACK WindowProc(HWND hwnd, UINT ...
0
votes
1answer
25 views
P/Invoke with optional out pointer
How can I call a method like StartXpsPrintJob, which optionally returns a pointer to a COM object, depending upon whether NULL is passed for the OUT parameter.
Example in C++ would be a call with ...
1
vote
1answer
18 views
Is there a method in the Windows API for firing off code when a specific application is run?
I want to monitor the status of an application that runs in Windows. What is the best method (Win32 or newer API) that I can use to watch for when a specific application is run and execute another app ...
3
votes
0answers
38 views
Do bit indices in affinity mask in GetLogicalProcessorInformation and SetProcessAffinityMask mean the same?
SetProcessAffinityMask WinAPI function has dwProcessAffinityMask parameter, where each bit corresponds to single logical processor in a system.
GetLogicalProcessorInformation WinAPI function has ...
0
votes
1answer
12 views
What argument should DllGetClassObject to the constructor of it's Shell Extension Handler?
Sorry if that question did not make a lot of sense. I am trying to make a Hello World Shell Extension Handler. I have been following this tutorial.
It says Shell Extension Handlers must implement ...
1
vote
1answer
37 views
200k Handles in TaskManager: Server out of memory / How to get list of used ressources
I have a Windows Server 2003 Small Business System here. The problem: there are about 200.000 handles which are consuming almost all the memory of the machine and I don't know how to determine which ...
0
votes
0answers
16 views
CreateBitmapSourceFromHBitmap with hBitmap from other application
I try to create BitmapSource in one application on handle bitmap, generated in other application. I do it manually in a debugger: I copy the address IntPtr of hBitmap and directly in a debugger I ...
3
votes
1answer
33 views
Win API function for modifying file permissions
I'm searching for a way to modify the file permissions of a file in Windows 7 using C.
For example: I would like to add read permissions for C:\a.txt for the user A,
or remove write permissions from ...
0
votes
2answers
64 views
C++ Remove x byte every x in char [closed]
Hi for my application i need to remove null byte on a char array evry X bytes like:
char a[] = ...
0
votes
1answer
18 views
Psexec and UAC issue
I am using psexec to run a exe in a remote machine which is windows 7. I need the exe to run with administrator privilege as it needs to update some registries under HKLM in the remote system.
While ...
-2
votes
1answer
89 views
Add null byte every X byte in c++
Hi for my project i need to add null byte every x byte in a char array like
unsigned char data[] = {
0x98, 0xB0, 0x26, 0x7E, 0x11, 0x80, 0x9A, 0x79,
0xE7, 0x46, 0x14, 0xA4, 0x62, 0x7E, 0x06, 0xC0 ...
0
votes
1answer
21 views
Use WM_SETTEXT to replace contents of window whilst maintaining window scroll position
I'm building an application that sends RTF text to a third-party window. It basically provides auto-correct functionality within a primitive third-party IDE.
I can set the contents of this window ...
-4
votes
0answers
27 views
Win32 console programming tutorials [closed]
I have found parts 1 to 4 of adrianxw Win32 console programming tutorial at a chinese site http://blog.baozishan.in/?p=871, without the images
the site of the author http://www.adrianxw.dk seems to ...
0
votes
2answers
33 views
How to get the realtime resolution in directshow?
How to get the current resolution of SamleGrabber in DirectShow?
I tried the below code, it doesn't work.
The value you get is always 1920x1080, while the source resolution changed from 1920x1080 to ...
1
vote
1answer
24 views
c compiler commands for generating a winexe
how do i instruct the C compiler (gcc &| cc) to make a "Windows executable" in command line? just like csc /t:winexe filename.cs in c#?
my goal is to create a GUI(winapi) based app without the ...
0
votes
1answer
25 views
When/Why does Marshal.GetLastWin32Error() return a negative error code?
When calling a particular Win32 API function(From C# through Interop), it fails and returns a negative error code
Background:
I'm doing this on Windows 8 OS running inside a TAB.
Function Signature
...
3
votes
1answer
31 views
Why does GetOverlappedResult need the file handle?
Why does GetOverlappedResult need a file handle?
It seems like WaitForSingleObject(overlapped->hEvent) should be enough to wait on the event so that the overlapped I/O finishes, so what does ...
0
votes
0answers
37 views
Win32 API Graphical Controls - How to Redraw
I'm working with VBA for Excel 2003. I created UserForm1 and added a command button. I can manipulate the properties of UserForm1 using the form's hwnd. For example, I stripped the border, max/min, ...
1
vote
0answers
19 views
Why is a username coming back empty from LookupAccountSid and suser_sname when resolving the SID for a newly created user in Active Directory?
We have a computed column in our SQL Server 2008 R2 database that is specified as (suser_sname([USERSID])). When a new user is created in our program, it creates an Active Directory user and then ...
0
votes
0answers
27 views
Folder's context menu item “paste” and “paste shortcut” disabled
I am fetching folder's context menu using IShellView::GetItemObject (using flag: SVGIO_BACKGROUND).
Context menu is populating fine (same as window explorer populates for folder when we make a right ...
0
votes
1answer
28 views
Why my threaded winsock server won't crash?
I have implemented a c++ winsock (win 32) with intention of crashing using an strcpy command. The socket itself is instantiated inside a thread. However, when I put the strcpy inside the recv loop, ...
0
votes
1answer
33 views
Limit windows process memory/execution time with job objects - what's wrong with my code?
I'm having an issue trying to make my application shut down after it has reached specified execution time. I created a job, set limit information, assigned current process to it and nothing happens.
...
2
votes
2answers
58 views
Why is the callback given to ReadFileEx() not receiving the correct OVERLAPPED structure? [closed]
For some reason, my callback isn't receiving the address of the correct OVERLAPPED structure after a call to ReadFileEx. What can cause this?
Update -- example:
#include <stdio.h>
#include ...
1
vote
1answer
38 views
How can I invoke CreateFile for something like /dev/null in Windows?
I need to call a function in a Windows library that takes as a parameter a handle to a file created by CreateFile.
In my application, I am not interested in the output that the library generates on ...
0
votes
0answers
25 views
Print a document with winapi
I'm currently sending a document to default printer with shell execute in my program, i was wonder is there any winapi can directly send a file to given printer ?
Current code looks like ;
...
0
votes
0answers
7 views
enable auto tooltop
as write here if I do not set the BTNS_SHOWTEXT style to a button, will not shown on the button text, but when the mouse hovers over the button, you will see tooltip with the text.
So I do not ...
0
votes
1answer
29 views
Simple WinAPI app has an additional console window
I've copy-pasted following skeleton of a simple C++ WinAPI application. It works, but creates an additional console window along with GUI one. How to get rid of it? I am using GCC from MinGW.
...
0
votes
1answer
39 views
WinApi OpenProcess error 87
Im trying to open process using Wisual Studio 2012, c++ console application and get 87 error:
#include <stdio.h>
#include <tchar.h>
#include <Windows.h>
#define EXTERN_DLL_EXPORT ...
0
votes
0answers
45 views
GetDC() returns NULL
I have a class:
class Context()
{
Context(HWND window)
{
m_dc = GetDC(window);
/*...some stuff here...*/
}
~Context()
{
ReleaseDC(m_dc);
/*...some stuff here...*/
}
...
-1
votes
1answer
17 views
Python Win32API SetFileAttributes For Removables
I'm writing an app to set attributes of pendrivers. I could set all the files and subfolders with "normal" permissions. But when I try setting the root path(like "k:/"), it doesn't work. How can we ...
0
votes
1answer
45 views
Should I call CoInitialize in timer callback
I have a single thread program which start with
CoInitializeEx(NULL, COINIT_APARTMENTTHREADED)
I use COINIT_APARTMENTTHREADED, because some functions (ex. URLDownloadToFile) didn't work properly ...
-1
votes
0answers
16 views
retrieved control type and control pattern through UIAutomation library are different with shown in UISpy
This issue doesn't happen with all applications, but consistently happen with NotePad.
For example, in UISpy, it shows the control Type is controlType.document. Text control pattern is listed there ...
0
votes
0answers
10 views
Set RealVNC on top of a SurfaceWindow
My main window is a SurfaceWindow running on full screen. I launch a RealVNC process using:
Process realVNC = new Process();
realVNC.StartInfo.FileName = vncViewerPath;
...
0
votes
0answers
37 views
FindWindowEx on child dialog window
I'm trying to get the handle of a child dialog window. I've tried using FindWindowEx, but it didn't work. Instead, FindWindow did work.
I did an experiment with visual studio's options window, with ...
0
votes
1answer
18 views
Translating boost::thread->native_handle() to XP ThreadId
I've managed to get the Windows ThreadId out of the native_handle() from a boost::thread by using GetThreadId(HANDLE). Sadly that call is not available on Windows XP and after searching around I found ...
0
votes
1answer
18 views
Generating Mouse events in C++ / Processing on Windows (Emulate Mouse)
I have a proprietary device connected via An arduino microprocessor to USB, which I want to use as a Mouse emulator. At present I use a processing (language) program to generate x,y data pertaining to ...
1
vote
1answer
39 views
Fooling an app about mouse location
First of all if there is any language-specific solutions to this that are only possible in c++/c#/java etc. please say so because im fine with using any one.
Currently I'm trying to click a button in ...
0
votes
1answer
33 views
Get Process's “Command Line” and arguments from Process object?
In my Win7 Task Manager, there's a column that can be displayed called "Command Line" and will show exactly how the process was started and all the parameters issued. If I have a Process object for a ...
1
vote
1answer
46 views
LoadLibraryExW() fails, last error is ERROR_MOD_NOT_FOUND, but no missing dependencies?
A customer is using our dll which is creating a child process which uses an open source library, which ultimately fails because of a call to LoadLibraryExW(), the last error returned is ...
0
votes
1answer
42 views
C++ WINAPI window visibliity toggling code
How do I toggle between having a button or a window back and forth between being visible and not visible, I can't find the code that fits the problem.. I'm using CreateWindowEx to make the window. I ...
0
votes
0answers
27 views
Create semi-transparent panel with C++ and WINAPI
I have a window with a background image and I want to create a panel (like in .NET) with a white border and a semi-transparent background RGBA(255, 255, 255, 124), so the image in the background could ...
0
votes
2answers
67 views
Prevent window movement
I currently have a small game which runs in a win32 window. I just noticed that when I hold the top of the window (the bar which has the closing button) it freezes my application. I would like to ...

