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.

learn more… | top users | synonyms (6)

0
votes
3answers
43 views

What does this bit of MSDN documentation mean?

The first parameter to the EnumFontFamiliesEx function, according to the MSDN documentation, is described as: hdc [in] A handle to the device context from which to enumerate the fonts. What ...
0
votes
1answer
30 views

child of tab dialog control cover the tab itself

I create a tab control in WM_INITDIALOG this way: INITCOMMONCONTROLSEX icex = {0}; icex.dwSize = sizeof(INITCOMMONCONTROLSEX); icex.dwICC = ICC_TAB_CLASSES; InitCommonControlsEx(&icex); ...
-1
votes
0answers
38 views

expected primary-expression before ')' token - error while using Win32

I'm simplifying my program by calling a simple function to make a WNDCLASSEX object. void WndClassBuilder(WNDCLASSEX* wndClass, int style, int cbClsExtra, int cbWndExtra, HINSTANCE* hInstance, HICON ...
0
votes
3answers
48 views

How to launch an executable on the end of installation correctly?

I'm launching my Windows application this way after the installation completes: !define MUI_FINISHPAGE_RUN_FUNCTION "LaunchApplication" ... Function LaunchApplication ExecShell "" ...
0
votes
1answer
62 views

Windows 8 Getting Absolute X Y Coordinates of Touchscreen (regardless of window) [duplicate]

I've scowered MSDN/Google for the past few days and I've been unable to find the answer to this question. I'm looking to get the X Y coordinates of a touch/multiple touches on a touchscreen device ...
0
votes
1answer
35 views

Copy embedded structure to clipboard and retrieve it in win32

I am trying to implement clipboard operation (cut/copy/paste) on my win32 window. This window has a bunch of gdi objects drawn over it, and the window can have child controls inserted in it as well. ...
1
vote
3answers
79 views

Why do graphics drawn with GetDC(0); disappear as soon as a window moves over them?

If you use the following code to draw a rectangle the rectangle goes away as soon as anything moves over it. #include "stdafx.h" #include <Windows.h> #include <iostream> using namespace ...
0
votes
1answer
15 views

Why i get NAN value when storing mmioRead result in double?

Why i get NAN value when trying to read .wav file and directly store it sample data in double? Before thinking about using this i was store the sample data in smallint and then convert it to double by ...
0
votes
1answer
24 views

How many requests does IcmpSendEcho2 send?

IcmpSendEcho2 documentation says: The ReplyBuffer contains the ICMP echo responses, if any. For ICMP, if only one request is sent, wouldn't only zero or one responses be expected? If that's the ...
1
vote
1answer
47 views

Launching a Metro-style app from a Desktop application

Is there a way to launch windows 8 app from a desktop app? For e.g : In my desktop app I push some button, and my win8 app start(win8 app was in Suspend mode).
0
votes
2answers
31 views

What is the correct way to detect that an IShellItem refers to a Library?

I'm using the common file dialog with FOS_PICKFOLDERS to let the use pick a location to save files. If the user selects a library, e.g. Library\Documents then my current code fails at the point where ...
1
vote
1answer
58 views

Is it possible to prevent an application from being activated (brought to front) without using DLL injection?

I need to write application A, which intercepts the WM_ACTIVATE message to a window of application B in order to prevent B from becoming top-most application. Is it possible to do this without DLL ...
1
vote
1answer
43 views

How can I change my system colors to default?

In my C++ application I wrongly changed system color: const INT val = COLOR_HIGHLIGHTTEXT; const COLORREF color = RGB(255,0,0); ::SetSysColors(1, &val, &color); How can I restore ...
0
votes
2answers
36 views

Handle postthreadmessage() inside a thread which is blocking in while(1) loop or use “Event Driven Sockets”

I have a single server multiple client udp application. There is a single thread (thread#1) with a single socket (socket#1) to receive data from client#1 continuously. The task of this receiving ...
0
votes
0answers
45 views

How can I know that threads of my application are working or hovered?

I need to write application that collect information about processes in windows. I can read number of threads and thread's id, memory that used by process. But i dont know how i can check working or ...
0
votes
0answers
32 views

How to add automatic scrolling bar to a window when number of buttons exceeds window size. (winapi)

I have created a window and added almost 50 buttons to it. But the problem is that I can only see a few of those buttons as my window does not scroll up/down or left/right to show me the remaining ...
0
votes
1answer
35 views

options for condition variable in windows server 2003

Windows Server 2003/ Win Xp does not support condition variables, what could be other options for functionality of condition variables in win server 2003?
4
votes
0answers
25 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 ...
0
votes
0answers
41 views

RC2247 : Cannot open Rc file : Resource explorer cannot load resource ; Load failed

I have a win 32 project i am working on and the resource file were working fine till yesterday. Now when i try to open the resource file to edit, it crashes and gives me the following error: ...
1
vote
0answers
60 views

Breakpoint handling in another process

Following advices given in Read eax register , I wrote a simple debugger using winapi. My objective is to read the eax register each time after an assembly instruction is executed in another thread. ...
1
vote
2answers
84 views

Why does RegSetValueEx work even when I break the rule about accounting for NUL termination in the length?

I've got a simple program that adds calc.exe to startup: #include <windows.h> #include <tchar.h> int main(){ _tprintf(TEXT("Adding calc.exe to ...
3
votes
3answers
117 views

FindWindow does not find the a window

Hey guys I've plan for make a simple trainer console with C++ but first step I've got problem with FindWindow() #include <stdio.h> #include <cstdlib> #include <windows.h> #include ...
0
votes
1answer
38 views

Detecting if an Internet Explorer process is running Flash Player

Ok, here is a little 1 million dollars question. I'm developing an application that checks if any of your browsers is currently running a Flash application. Here is my core native implementation: // ...
0
votes
1answer
65 views

Load resource as byte array programmaticaly in C++

Here the same question for C#: load resource as byte array programmaticaly So I've got a resource (just binary file - user data, dosen't really matter). I need to get a pointer to byte array ...
1
vote
2answers
41 views

Double-buffering *framework* in C and Windows GDI

Background: My client has a very extensive proprietary forms library which is effectively implemented in C (actually, it's a proprietary object-oriented language that basically wraps Windows controls ...
0
votes
1answer
69 views

How to check if a button was pressed

My goal is to populate the client area of my window with a bunch of different child controls. Things like buttons check boxes and static text but I'm having a difficult time figuring out how to catch ...
2
votes
1answer
30 views

create image list from resource file - win32

I have in .rc file several images, for example: IDB_COPY BITMAP "copy.bmp" IDB_CUT BITMAP "cut.bmp" IDB_PASTE BITMAP "paste.bmp" And I want to load them all into ImageList. if I will write ...
-1
votes
0answers
29 views

win32: Named Pipe visible/accessible only from current process [closed]

I basically need in-process communication at the moment. I choose named pipes for in-process communication because soon program will be modified, added authentication and so on. At the moment, I would ...
1
vote
1answer
56 views

change color in progress bar win 32

I am trying to change the color of background and bar in a win 32 progress bar in the following way : HWND hwndPB =CreateWindowEx(0, PROGRESS_CLASS, NULL, WS_CHILD | WS_VISIBLE |PBS_SMOOTHREVERSE ...
1
vote
0answers
59 views

How to turn off the display of a Win8 tablet

Is there a way to turn off the display of a Win8 Tablet without putting the tablet in sleep mode? I use following C++ code, but this code puts the tablet in sleep mode: const LPARAM OFF = 2; // ...
1
vote
1answer
28 views

create toolbar with my bitmap images

this is an example code of msdn to create toolbar, but this example use the standard images of the system. What do I need to change in this code to use my images from resource file, for example: ...
2
votes
2answers
123 views

Character array reuse

I'm writing a Win32 console application in Visual Studio 2010. Consider one function that take two char* as parameters. Following is prototype of function: void WriteApplicationFile(char ...
-1
votes
1answer
79 views

Blocking sockets v/s non-blocking sockets in multi-threaded single server multiple client application [closed]

I had been working on a Server Client aplication where Server is going to service(sendto + receivefrom)'x' number of Clients at a time. For this purpose, I have created 'x' number of threads on Server ...
-2
votes
0answers
45 views

Crash in closesocket(..)

I see a crash in perl(cpan) which seem to come from closesocket(..). The exception code of the crash is CX00000008. Perl treat socket and file as unix using descriptor, call closesocket(..) and when ...
0
votes
0answers
39 views

RegisterDeviceNotification fails with 1066 'service-specific error'

This error happens only in Debug configuration and in Windows vista/7. In Release or xp, everything works perfectly. Any idea for why it might happen? And how might I find this service specific ...
0
votes
1answer
35 views

Call Win32 CalculatePopupWindowPosition from C#

I'm trying to call the WinAPI function CalculatePopupWindowPosition in C# using P/Invoke. From http://msdn.microsoft.com/en-us/library/windows/desktop/dd565861(v=vs.85).aspx I see that it's syntax ...
1
vote
1answer
40 views

How to correctly display characters from different languages?

I am finishing application in Visual C++/Windows API and I am using MySql C Connector. Whole application code uses ANSI, MySql C Connector is in ANSI too. This program will be used on Polish and ...
0
votes
2answers
87 views

Get mouse screen coordinates on click

How can I get mouse screen coordinates right after user clicks left mouse button (mose click coordinates - in another words). It's for a plugin written with FireBreath. I was tryin to use: ...
2
votes
3answers
61 views

SetWindowsHookEx does not react on media keys

I want to capture user keyboard input to react well on keyboard media keys: play/pause, next and previous in particular. I tried to use SetWindowsHookEx with low-level WH_KEYBOARD_LL param to ensure I ...
0
votes
2answers
42 views

CreateProcess,winapi,error code 3

Here's my code. I always get error 3, what can I do? I tried to replace CreateProcces with CreateProcessA,replace first two param, try to process other program, but it still doesn't work.Thanks. ...
-5
votes
1answer
86 views

Exporting same DLL function under multiple names [closed]

I have made some functions in my DLL, like this: procedure DoThis(A: PChar): Boolean; stdcall; begin f := TFileStreamCreate(A, fmCreate); f.read() f.free; end; then I exported it under 2 names: ...
0
votes
1answer
43 views

remove button from a window

Using c++, I have created a window with a "WNDCLASS" structure. I have then used "CreateWindow" again with the system class "button" and set the parent handle to the handle of the window already ...
1
vote
1answer
23 views

python win32api blocking bottle routes

I have a bottle web application. At some point, i want the server to raise a dialog window to ask the server admin for something. This alert, even when started from a Thread is blocking - And i don't ...
1
vote
1answer
76 views

Why won't my C++/Win32 project work outside of Visual Studio?

I have a rather large project I'm working on in C++/Win32, and now that I'm nearing completion, I wanted to start testing it on other machines. My project works great in Visual Studio - either in ...
5
votes
1answer
145 views

Simulate keyboard input at system level in C++

I am trying to control games and do free tracking using an external IMU device here by simulating keyboard inputs like left and right arrows. I have successfully done with calling SendInput() ...
1
vote
1answer
61 views

C# / WinAPI - Monitoring a Memory Region

I was wondering if there is a way to monitor a particolar memory region for changes. I'm using the following method in order to open a process and obtain a collection of its used memory regions: ...
0
votes
1answer
53 views

Acquiring selected text from active window using c++

I have the below code where I am trying to get the selected text from an active windows and print it onto the console. DWORD new12=0; KEYBDINPUT* input = new KEYBDINPUT[key_count]; if( ...
2
votes
2answers
66 views

Close textinput for a textbox?

Is there a way I can, in C#, close the text input popup that is visible when you tap a TextBox? I thought of setting focus to the LayoutRoot or ContentPanel (both parent grids) in my app but that ...
0
votes
0answers
33 views

How to make custom windows interface completely different than standard window style like of Cyberlink PowerDVD

I can make default styled windows using win32 API for my windows application. Now I need to draw custom windows with custom border, custom maximize, minimize buttons, custom styled windows controls ...
1
vote
0answers
45 views

Win32 - GDI - Changing custom pen color

I am trying to use a custom pens in win32 - PS_DASH/PS_DASHDOT - with default colors. However I wanted to change the color of the pens with in the main body of the program based on certain conditions. ...

1 2 3 4 5 329