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)

135
votes
7answers
103k views

Objective C for Windows

What would be the best way to write Objective-C on the Windows platform? Cygwin and gcc? Is there a way I can somehow integrate this into Visual Studio? Along those lines - are there any suggestions ...
113
votes
14answers
66k views

How do you configure an OpenFileDialog to select folders?

In VS .NET, when you are selecting a folder for a project, a dialog that looks like an OpenFileDialog or SaveFileDialog is displayed, but is set up to accept only folders. Ever since I've seen this ...
71
votes
13answers
42k views

Windows threading: _beginthread vs _beginthreadex vs CreateThread C++

What's a better way to start a thread? I'm trying to determine what are the advantages/disadvantages of _beginthread, _beginthreadex and CreateThread. All of these functions return a thread handle ...
57
votes
7answers
6k views

Find out what process registered a global hotkey? (Windows API)

As far as I've been able to find out, Windows doesn't offer an API function to tell what application has registered a global hotkey (via RegisterHotkey). I can only find out that a hotkey is ...
56
votes
10answers
36k views

What is the easiest way to parse an INI File in C++?

I'm trying to parse an INI file using C++. Any tips on what is the best way to achieve this? Should I use the Windows API tools for INI file processing (with which I am totally unfamiliar), an ...
51
votes
7answers
28k views

What is __stdcall?

I'm leaning some win32 programming, and the WinMain prototype looks like: int WINAPI WinMain ( HINSTANCE instance, HINSTANCE prev_instance, PSTR cmd_line, int cmd_show ) I was confused as to what ...
51
votes
8answers
25k views

How to find if a native DLL file is compiled as x64 or x86?

I want to determine if a native assembly is complied as x64 or x86 from a managed code application (C#). I think it must somewhere in the PE header since the OS loader needs to know this information, ...
50
votes
11answers
37k views

Bring a window to the front in WPF

How can I bring my WPF application to the front of the desktop? So far I've tried: SwitchToThisWindow(new WindowInteropHelper(Application.Current.MainWindow).Handle, true); SetWindowPos(new ...
45
votes
2answers
2k views

Rendering controls on glass: Solution found, needs double-buffering/perfecting

I (finally!) found a way of rendering Windows.Forms controls on glass that doesn't seem to have any major drawback nor any big implementation time. It's inspired by this article from Coded, which ...
44
votes
10answers
24k views

Is gettimeofday() guaranteed to be of microsecond resolution?

So I find myself porting a game, that was originally written for the Win32 API, to Linux (well, porting the OS X port of the Win32 port to Linux). I have implemented QueryPerformanceCounter by giving ...
41
votes
9answers
17k views

Where can I find my .emacs file for Emacs running on Windows?

I tried looking for the .emacs file for my Windows install for Emacs but could not find it. Does it have the same filename under Windows as in Unix? Do I have to create it myself? If so, under what ...
41
votes
1answer
9k views

Using WinRT from C?

Watching the //BUILD stuff, I saw that WinRT API's can be consumed by C code: I am rather excited about a fresh C API available to Win32 developers. Where can I find information on the C WinRT ...
39
votes
12answers
27k views

Generating a unique machine id

I need to write a function that generates an id that is unique for a given machine running a Windows OS. Currently, I'm using WMI to query various hardware parameters and concatenate them together ...
38
votes
2answers
1k views

How can a Windows service application be written in Haskell?

I've been struggling to write a Windows service application in Haskell. Background A service application is executed by the Windows Service Control Manager. Upon launching it makes a blocking call ...
37
votes
12answers
93k views

Is it possible to “decompile” a Windows .exe? Or at least view the Assembly?

A friend of mine downloaded some malware from Facebook, and I'm curious to see what it does without infecting myself. I know that you can't really decompile an .exe, but can I at least view it in ...
36
votes
22answers
4k views

Does it still make sense to learn low level WinAPI programming? [closed]

Does it make sense, having all of the C#-managed-bliss, to go back to Petzold's Programming Windows and try to produce code w/ pure WinAPI? What can be learn from it? Isn't it just too outdated to be ...
36
votes
8answers
3k views

The Coolest Parts of Windows API [closed]

I have noticed that there are quite a few community wikis about "Tips & Tricks" or "Hidden Features" in programming languages and APIs here at Stack Overflow. But I could not find any about my own ...
36
votes
4answers
4k views

Best way to do non-flickering, segmented graphics updates in Delphi?

I thought I could just throw this out there and just ask: I have seen Delphi controls that are flawless in terms of graphical effects. Meaning: no flickering, sectioned updates (only redraw the ...
36
votes
3answers
4k views

What's “wrong” with C++ wchar_t and wstrings? What are some alternatives to wide characters?

I have seen a lot of people in the C++ community(particularly ##c++ on freenode) resent the use of wstrings and wchar_t, and their use in the windows api. What is exactly "wrong" with wchar_t and ...
35
votes
3answers
5k views

How do I make a WPF window movable by dragging the extended window frame?

In applications like Windows Explorer and Internet Explorer, one can grab the extended frame areas beneath the title bar and drag windows around. For WinForms applications, forms and controls are as ...
34
votes
6answers
8k views

What is a message pump?

In this thread (posted about a year ago) there is a discussion of problems that can come with running Word in a non-interactive session. The (quite strong) advice given there is not to do so. In one ...
34
votes
6answers
5k views

How to get the word under the cursor in Windows?

I want to create a application which gets the word under the cursor (not only for text fields), but I can't find how to do that. Using OCR is pretty hard. The only thing I've seen working is the ...
34
votes
3answers
2k views

Vista/7: How to get glass color?

How do you use DwmGetColorizationColor? The documentation says it returns two values: a 32-bit 0xAARRGGBB containing the color used for glass composition a boolean parameter that is true "if the ...
33
votes
3answers
2k views

How can I remove titlebar and taskbar icons of Java programs on Windows 7?

I have written a little app that disables the titlebar and taskbar icons of all windows of the Windows OS in C#. Here is the code: using System; using System.Runtime.InteropServices; using ...
30
votes
7answers
24k views

How to provide user name and password when connecting to a network share

When connecting to a network share for which the current user (in my case, a network enabled service user) has no rights, name and password have to be provided. I know how to do this with Win32 ...
30
votes
5answers
73k views

Adding external library into Qt Creator project

How can I add external library into a project built by Qt Creator RC1 (version 0.9.2)? For example, the win32 function EnumProcesses() requires Psapi.lib to be added in the project to build.
30
votes
7answers
44k views

How to use a FolderBrowserDialog from a WPF application

I'm trying to use the FolderBrowserDialog from my WPF application - nothing fancy. I don't much care that it has the Windows Forms look to it. However, when I call ShowDialog, I want to pass the ...
29
votes
8answers
11k views

How to make an OpenGL rendering context with transparent background?

Rendering contexts usually have a solid color on the background (black or whatever, see the image below): I'm wondering if it's possible to setup a window, with no decorations AND with the ...
28
votes
7answers
8k views

Rockscroll or Metalscroll for Visual Studio 2010 (Minimap)

Has any one found a replacement for Rockscroll or Metalscroll for Visual Studio 2010? I miss it so much that I looked into making one my self but only have word highlighting working and a place ...
28
votes
2answers
2k views

WinRT and build-in Windows 8 Apps

Can non-Metro Windows apps (ex: Explorer) be built with the new WinRT, or must they still be Win32 based?
27
votes
15answers
28k views

Sleep Less Than One Millisecond

On windows you have a problem you typically never encounter on Unix. That is how to get a thread to sleep for less than one millisecond. On Unix you typically have a number of choices (sleep, usleep ...
27
votes
5answers
40k views

How to convert std::string to LPCWSTR in C++ (Unicode)

I'm looking for a method, or a code snippet for converting std::string to LPCWSTR
27
votes
8answers
17k views

Building libcurl with SSL support on Windows

I'm using libcurl in a Win32 C++ application. I have the curllib.vcproj project added to my solution and set my other projects to depend on it. How do I build it with SSL support enabled?
26
votes
1answer
355 views

What happens internally when a file path exceeds approx. 32767 characters in Windows?

In Windows (assume 2000 onwards), a file path can be at most approximately 32767 characters in length. This limitation exists due to the internal handling with UNICODE_STRING in the native API (also ...
26
votes
1answer
597 views

LCC— How to stop debugger from breaking at the start of the application?

I'm not sure of how many users there are out there that use the LCC C compiler and the WEdit GUI for Windows but it has a "feature" that is can get to be quite annoying. When you start an application ...
25
votes
5answers
13k views

What's the differences between VirtualAlloc and HeapAlloc?

There are lots of method to allocate memory in windows enviorment, such as VirtualAlloc/HeapAlloc/malloc/new. Thus , what's the difference among them?
25
votes
3answers
21k views

ShellExecute equivalent in .NET

I'm looking for the .NET-preferred way of performing the same type of thing that ShellExecute does in Win32 (opening, printing, etc. for arbitrary file types). I've been programming Windows for over ...
25
votes
7answers
24k views

How to use win32 API's with python?

How can I use win32 API in Python? What is the best and easiest way to do it? Can you please provide some examples?
25
votes
5answers
20k views

How to read a value from the Windows registry

Given the key for some registry value (e.g. HKEY_LOCAL_MACHINE\blah\blah\blah\foo) how can I: Safely determine that such a key exists. Programmatically (i.e. with code) get its value. I have ...
24
votes
10answers
4k views

How to quickly get started at using and learning Emacs [closed]

There are all sorts of advantages to using Emacs, but for someone comfortable with the usual Win32 applications it comes with a wall-like learning curve. With most other editors it’s possible to just ...
24
votes
8answers
8k views

How to detect true Windows version

I know I can call the GetVersionEx Win32 API function to retrieve Windows version. In most cases returned value reflects the version of my Windows, but sometimes that is not so. If a user runs my ...
24
votes
10answers
35k views

How can a Windows service execute a GUI application?

I have written a Windows service that allows me to remotely run and stop applications. These applications are run using CreateProcess, and this works for me because most of them only perform backend ...
24
votes
8answers
574 views

Insert bytes into middle of a file (in windows filesystem) without reading entire file (using File Allocation Table)?

I need a way to insert some file clusters into the middle of a file to insert some data. Normally, I would just read the entire file and write it back out again with the changes, but the files are ...
24
votes
4answers
16k views

Using global keyboard hook (WH_KEYBOARD_LL) in WPF / C#

I stitched together from code I found in internet myself WH_KEYBOARD_LL helper class: Problem this had is now solved, thanks to Mattias S, following YourUtils.cs is fixed. Put the following code to ...
23
votes
9answers
37k views

How to list physical disks?

How to list physical disks in windows? In order to obtain a list of "\.\PhysicalDrive0" available.
23
votes
6answers
16k views

Safe remove USB-Drive using Win32 API?

Anyone knows how to remove a USB drive using the win32 API? I do a lot of work on embedded systems and on one of these I have to copy my programs on a usb-stick an insert it into the target hardware. ...
23
votes
5answers
7k views

Is an atomic file rename (with overwrite) possible on Windows?

On POSIX systems rename(2) provides for an atomic rename operation, including overwriting of the destination file if it exists and if permissions allow. Is there any way to get the same semantics on ...
23
votes
5answers
2k views

Is it reasonable to use std::basic_string<t> as a contiguous buffer when targeting C++03?

I know that in C++03, technically the std::basic_string template is not required to have contiguous memory. However, I'm curious how many implementations exist for modern compilers that actually take ...
23
votes
6answers
12k views

Check whether a path is valid

I am just wondering: I am looking for a way to validate if a given path is valid. (Note: I do not want to check if a file is existing! I only want to proof the validity of the path - So if a file ...
22
votes
19answers
3k views

Is Learning the win32 API Worthwhile? [closed]

I was certain that somebody would have specifically asked this question, but from what I can see no-one has (there's been a question about learning win32 but that doesn't cover whether it's worthwhile ...

1 2 3 4 5 327