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.
-2
votes
0answers
12 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 ...
4
votes
0answers
32 views
+100
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 ...
1
vote
1answer
17 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
17 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
...
1
vote
0answers
6 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
14 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
16 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
2answers
32 views
SDL Image Not Supported : cute2.png is not a PNG file, or PNG support is not available
I was just trying a tutorial, as :
http://lazyfoo.net/SDL_tutorials/lesson03/windows/msvsnet0508e/index.php
http://lazyfoo.net/SDL_tutorials/lesson02/index.php
and tried to load and display my ...
0
votes
0answers
23 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.
...
0
votes
2answers
83 views
Get HBITMAPs For *ALL* Sizes and Depths of a File Type Icon (C++)
Compiler: MinGW/GCC
I'm trying to get the HICON of a file type based on what icon windows has registered for that file type, and then grab all of the HICON's images.
The problem is, I can't seem to ...
0
votes
0answers
20 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
16 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
52 views
How (best) to post WM_QUIT to a running process?
Goal: Shut down a running 32 bit GUI process under windows
I have access to the executable pathname.
There are potentially more than one copy of this software running, but only one started from a ...
5
votes
2answers
2k views
How do I retrieve an error string from WSAGetLastError()?
I'm porting some sockets code from Linux to Windows.
In Linux, I could use strerror() to convert an errno code into a human-readable string.
MSDN documentation shows equivalent strings for each ...
2
votes
2answers
52 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 ...
0
votes
1answer
15 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 ...
1
vote
1answer
49 views
+50
Incorrect password passed to LogonUser() but the Active Directory account is not locked as expected
I have Active directory "number of logon retries" = 3. We call
LogonUser function 5 times with the wrong password. After that I call LogonUser with right password and it works, and the user can ...
7
votes
9answers
7k views
How do I recursively create a folder in Win32?
I'm trying to create a function that takes the name of a directory (C:\foo\bar, or ..\foo\bar\..\baz, or \\someserver\foo\bar), and creates directories as necessary so that the whole path is created.
...
1
vote
1answer
31 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
17 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
4 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
25 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.
...
1
vote
2answers
290 views
getaddrinfo() on Win32
I have a C program that uses getaddrinfo(). It works as expected on Linux and Mac OS X.
I'm in the middle of porting it to Windows.
When I compile it (with MinGW gcc) I get the following warnings:
...
0
votes
1answer
42 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 ...
0
votes
1answer
33 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
37 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...*/
}
...
0
votes
1answer
10 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 ...
2
votes
1answer
21 views
How do I get the parent window's grandson, or grandson's son
I have a main window class, called for example file, and each file window, has several child windows, for example pages, and each page has several child windows, for example text boxes, etc, etc..
How ...
0
votes
1answer
24 views
NtFsControlFile seems to fails on files < 728 bytes when compressed
I was using the SDelete application provided by System Internals to delete files in a secure way but came across a issue where some files where being left. I managed to get the SDelete source code and ...
-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 ...
1
vote
1answer
36 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 ...
3
votes
3answers
229 views
Whats the best book to understand Window's GUI internal behaviour?
I have the Windows Internals book which is awesome for understanding how the kernel works. Its invaluable alongside my Advanced Windows Debugging book.. but..
One of things I continue to struggle ...
1
vote
1answer
158 views
Error importing public key using cryptoapi CryptImportKey
I want to import public key blob to a CSP. but error occurred.
BYTE pbData[] ...
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
34 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 ...
2
votes
1answer
48 views
OpenGL and wglUseFontBitmaps only draws equally spaced letters
the fonts I draw in OpenGL by using wglUseFontBitmaps take equal space (width) for every letter, so a "." needs as much space as an "M" for example. I have changed the pitch paramter in font creation ...
0
votes
1answer
38 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
1answer
17 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
31 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
2answers
160 views
SetWindowLongPtr returning ERROR_ACCESS_DENIED
I am still struggling with hooks.
My goal is:
Set a hook in notepad.exe
Subclass it (my final goal is to subclass the Edit class and show the content in my own window)
Disclaimer: I know there ...
-2
votes
1answer
77 views
Why does uninitialised return value cause Invalid Window Handle err in CreateWindowEx?
Edit- Added code to do with m_hWndClient and the WndProc that were not originally included. In an attempt to be brief I had incorrectly assumed it was unrelated.
After the following is run
HWND ...
0
votes
1answer
54 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 ...
0
votes
0answers
24 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 ...
1
vote
1answer
39 views
Why using WIC in my 32 bit application fails in Windows 7 32 bit?
I have Win32 C++ sample application that uses Windows Image Component in Visual Studio Pro 2012 Update 2. I built this app for X86 and tested in Windows 7 X64 SP1 and Windows 7 X86 SP1. It works fine ...
4
votes
4answers
9k views
how to get process handle from process id?
I have process Id , I want to get its process handle.
Is there any API available for that.
I tried to use OpenProcess but it returns NULL, and GetLastError =0.
This I am trying on Vista.
I guess I ...
0
votes
1answer
110 views
Get name Drive Hardware
hello someone could help me how to get
the name of the drive / hardware / / 'C: \' 'D: \' .......
example
NameDrive function (const sDrive: string): string;
begin
result: = GetDriveName (sDrive);
...
1
vote
2answers
35 views
RegSetValueEx function writing gibberish
I am using the RegSetValueEX in the following code and it is setting the value to incomprehensible chars (chinese looking). I'm guessing something with the whole beautiful world of encoding?
HKEY ...
0
votes
1answer
13 views
string too long with MsiGetProperty with Installshield Installscript
I am using MsiGetProperty to get string parameter value from the installer.
And after that I am calling a managed dll and I pass the that value:
nvBufferSize = MAX_STRING;
MsiGetProperty (hMSI, ...
1
vote
1answer
36 views
Winapi Shell_NotifyIcon - Duplicated icons in Notification Area Icons window
I´m working on a C++ application that creates an icon in notification area, with a baloon tip. When user clicks the baloon, the icon is being removed using Shell_NotifyIcon(NIM_DELETE, &nid), just ...


