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
2answers
100 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 ...
0
votes
3answers
66 views

Win32 API : how to make Edit Text to accept unsigned float only in c++?

I'm trying to learn win32 api :) I have some edit text placed in DialogBox and I want it to accept only float numbers that are greater than 0 I was able to make that edit text to accept Integers ...
1
vote
1answer
28 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
1answer
53 views

Child Windows that does not occupy client area

In the Win32 API (pure win32), The Menu bar does not occupy any area from the client area of the window. Which means the origin coordinates of the client area is right under the menu bar to the left. ...
2
votes
1answer
80 views

Is it safe to set SEM_FAILCRITICALERRORS on startup with VCL?

I've found that it is recommended to call SetErrorMode(SEM_FAILCRITICALERRORS) on application startup: http://msdn.microsoft.com/en-us/library/windows/desktop/ms680621.aspx I know that VCL code sets ...
0
votes
1answer
27 views

WINAPI Hook - determine whether a new directory was created [closed]

Is there any way to create a callback that reacts after the user created a new folder in the explorer?
0
votes
1answer
19 views

How to handle the message-only window to get the messages from the console window?

I'm trying to know when a console window has moved so I created a new message-only window to get the messages of the console but I don't know if it is working because the message is apparently never ...
0
votes
1answer
105 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); ...
3
votes
3answers
42 views

SetWindowText Slow, Win32 C++

I've got a simple application where I'm reading some internal variables and posting them to EditControl's on a menu. Here is a code snippet case 0: SetWindowText(GetDlgItem( gHWnd, ...
-1
votes
0answers
29 views

Need to create a new bitmap filled with black Win32

The title is not entirely clear. I am making a map editor that allows the user to create maps using tiles. The map files created will be used with another graphics library. That library supports ...
2
votes
2answers
56 views

Is it possible to embed one application in another application in Windows?

I'm writing a Windows application in Visual C++ 2008 and I want to embed the calculator (calc.exe) that comes with Windows in it. Does anyone know if that is possible, and if it is, can you give me ...
0
votes
1answer
32 views

Creating parallel threads using Win 32 API

Here is the problem: I have two sparse matrices described as vector of triplets. The task is to write multiplication function for them using parallel processing with Win 32 API. So I need to know how ...
1
vote
1answer
30 views

WinAPI using SetfilePointer to test EOF

Hi guys If I want to test EOF using SetFilePointer(fi1, 0, NULL, FILE_CURRENT) != INVALID_SET_FILE_POINTER or ? SetFilePointer(fi1, 1, NULL, FILE_CURRENT) != INVALID_SET_FILE_POINTER MSDN ...
1
vote
1answer
60 views

ProcessID confusion

I'm confused. Why do notepad.exe have three different process ID's? 1)Spy++ says 000000A48 (eh?) 2)Taskmanager says: 2632 3)GetWindowThreadProcessId says: 1744 I guess that 2632 is the right ...
-3
votes
0answers
67 views

Executing of batch file [duplicate]

I want to execute one command using batch file but non of below code is working where Please tell me where I am going wrong, Following are codes for executing batch file, First trial:- ...
0
votes
3answers
87 views

ShellExecute() not working with .bat file

I trying to execute following bat file in c++ using win32 api.Following is code for execution. //#include "Shellapi.h" #include "Windows.h" int _tmain(int argc, _TCHAR* argv[]) { ...
0
votes
2answers
31 views

Issue with Int to LPWSTR function

I am making a win32 program that is a level editing tool to go with the library I am creating for a 2D tile system. I want to create dialog box displaying the maps properties when the user selects it ...
0
votes
0answers
32 views

My custom FadeIN/FadeOut effects is not working with this inherited form which is using APIs for almost all

I want to show a form with fadein effect and close it with a fadeout effect, I know how to do this but this time I need to do it with a hardcoded inherited form which uses API to set the form to ...
0
votes
0answers
29 views

How to implement per file thumbnail for file association?

I have a file type that I want to associate with my program. I could make every file of that type have the same standard icon like how all HTML files look the same or all txt files, but what I want to ...
-1
votes
1answer
25 views

Windows LoadCursor - Does it return the same HCURSOR value each time?

If I call LoadCursor multiple times - loading both my own ones or the standard ones - does it return the same HCURSOR value if the ipCursorName parameter to the function is the same? ...
1
vote
1answer
41 views

NtLoadDriver in windows 8 - privilege not held

I'm trying to load driver in windows 8 using NtLoadDriver. And I've got on return of this function - 0xC0000061 (NTSTATUS value). Which means: Privilege not held. I created registry key and set all ...
2
votes
1answer
36 views

c++ windows - Disable crash dialog box in a child process

I have a program that launches a child process. When the child process crashes I would like there not to be a debug message box. I would like to do this without writing anything in the child process. ...
0
votes
1answer
47 views

Number of processor ticks for thread

I need to know how many ticks of processor used by thread knowing its thread id. Because processor in PC is a synchronous device, if my thread is working, it takes processor time. I need to see what ...
0
votes
1answer
10 views

how to streamout wide string from richedit control?

This is my attempt and I don't know why EM_STREAMOUT returns question marks when encountering non-ascii chars. This code copies text from window and put it back again but this time as question marks ...
0
votes
1answer
26 views

ShellExecute, “Print”

I am using ShellExecute through C and that seem's work OK except one issue. ShellExecute(NULL, "print", "C:\\index.html", NULL, NULL, SW_HIDE); With this I would like to get print dialog for press ...
1
vote
0answers
39 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
28 views

GetDIBits() returns wrong BGR values:

GetDIBits() was not passing the correct BGR values to a COLORREF array: #include <windows.h> #include <iostream> using namespace std; int main() {int i; HBITMAP hBit; HDC bdc; BITMAPINFO ...
0
votes
0answers
21 views

Radio buttons and checkbox repaint

I have problem with WinAPI radio buttons. Basically I have three of them and when I switch from one to another the old one is still checked until I hover mouse over it or I click again the button I ...
0
votes
1answer
18 views

How to create region of specified color from window

I have one window which is painted with some colorkey(16,0,16). Occasionally some part of window is getting painted by different colorkey. I would like to create a region out of this windows which has ...
-2
votes
2answers
39 views

Windows file API compatibility win 7 vs win XP

I am using some file functions like createFile, readFile in windows.h and I am developing under windows 7. Should I worry about windows XP users of my program? They have a different version of ...
0
votes
2answers
56 views

How do I call the Win32 API function `WriteFile()` with C++ iterators?

I have a class method which wraps the Win32 API function WriteFile(). This API function takes an LPCVOID argument to the data to be written. But instead, I want to pass a C++ iterator to it. How do I ...
0
votes
0answers
23 views

HttpSendRequest not running synchronously

It seems like HttpSendRequest is running asynchronously, because I get an ERROR_IO_PENDING error, which is odd since I've told InternetOpen not to do asynchronous calls. I have no callback function ...
3
votes
4answers
42 views

Show an (custom) error when “required” runtime libraries are not present?

I've been making a program in Visual Studio 2012, what comes with it is that when I send my application to someone, they need the VS2012 Runtime, which sometimes they don't know where to download or ...
0
votes
1answer
21 views

can ISampleGrabber convert the video frames to a specific mediaType?

I found this nice example on the internet explaining how directshow works. http://alax.info/trac/public/browser/trunk/Utilities/SetLifeCamStudioResolutionSample/SetLifeCamStudioResolutionSample.cpp ...
0
votes
1answer
23 views

howto get name of MEDIASUBTYPE from AM_MEDIA_TYPE, c++

I am using directshow to grab frames fro my webcam. During the configuration of the webcam (when I set the resolution, fps and so) I have multiple alternatives available from the cam. (47 of them). ...
-7
votes
0answers
39 views

How to write the Ordered dithering algorithm in WINRT?

I am trying to bring the ordered dithering effect http://en.wikipedia.org/wiki/Ordered_dithering to an image in WINRT. But the algorithm mainly uses the Image pixel x,y coordinates. Here is a sample ...
1
vote
1answer
42 views
+50

Active directory “number of logon retries” and LogonUser function, why it's not working?

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 ...
0
votes
1answer
20 views

How to intercept minimize message on WM 6.5

I was trying to intercept the WM_SIZE message sent by the "X" button on windows mobile 6.5. I know that this message along with the minimize value in wParam can be used to do whatever we want. ...
4
votes
1answer
57 views

Why is lua's string pattern matching doing this?

I have an external application which monitors CPU and GPU temperatures... I am using LUA w/ the alien extension to grab these values (via GetWindowText) and to do some pattern matching on these ...
0
votes
0answers
31 views

Detecting and redirecting an existing instance of browser

As part of a larger solution, I need to detect if any of the running browser instances (IE, FF and Chrome) have my web page currently open. If so, I need to redirect that browser to a different URL ...
2
votes
3answers
56 views

Toolbar scrolls when I scrolling the window

I am writing win32 program, and I have a window with a scroll bar, and now I added a toolbar. My problem is, the toolbar is scrolls when I scrolling the window. how do I set the toolbar to stand in ...
0
votes
2answers
39 views

MFC Application font issues - dialogs look wrongon Win2k8

My legacy application that runs on win2k3 citrix is about to be migrated to win2k8 citrix. While testing on win2k8 I noticed UI issues that are not apparent on 2k3 - buttons are not wide enough for ...
0
votes
1answer
40 views

Convert bitmap bits from GetDIBits to jpeg for winsock transmission

I am making a screenshot and retreiving the bits of the bitmap into a char buffer. I am wanting to send this over winsock to another program. This is successfull but sending the bitmap is processor ...
-1
votes
0answers
28 views

Scaling UI with DPI change of non MFC application

My application is a plug-in developed in VC++ (win32). The solutions I could find didn't work for me. I have two options : To disable DPI changes for my DLL plugin. That means my plug-in will not ...
0
votes
0answers
31 views

Does the Microsoft WebBrowser control ever delete cookies on its own?

I have a Win32 application that uses the Microsoft WebBrowser control to connect to a web site which requires a session cookie to log in. It's common for this application to have multiple windows ...
0
votes
0answers
35 views

Code needed to SendMessage using WM_USER for interprocess communication

OK, all you smart coders out there. I have been able to code a number of Visual Basic executable routines to do special things to control my home security system program, but have gotten stumped on ...
0
votes
0answers
32 views

Windows - Interacting with desktop while screen is locked

When you are connecting to Windows machine with Remote Desktop you can see and interact with desktop even though screen is locked on actual machine... Now my question is: is it possible for your ...
0
votes
2answers
65 views

How to show more than 50 push buttons on a window?

I have created a Window and then, created 50 buttons on this Window but I can only see 10 buttons on my window. Rest are out of view since I am not able to scroll the window down. I have added auto ...
0
votes
3answers
31 views

RegEnumValue and REG_MULTI_SZ type

MSDN says about string data got by RegEnumValue that If the data has the REG_SZ, REG_MULTI_SZ or REG_EXPAND_SZ type, the string may not have been stored with the proper null-terminating ...
0
votes
1answer
47 views

Change main method in Code::Blocks?

I switched from main to WinMain and Code::Blocks is searching for main. How do I fix this? This is probably a stupid question but I can't find it online. UPDATE @JBL #include <iostream> ...

1 2 3 4 5 328