68
votes
11answers
18k views

What is the difference between Cygwin and MinGW?

I want to make my C++ project cross platform, and I'm considering using Cygwin/MinGW. But what is the difference between them ? Another question is whether I will be able to run the binary on a ...
62
votes
44answers
116k views

Best C++ IDE or Editor for Windows [closed]

What is the best C++ IDE or editor for using on Windows? I use Notepad++, but am missing IntelliSense from Visual Studio.
60
votes
20answers
37k views

Good C++ GUI library for Windows

I'm looking for good windows GUI library for C++. The Ideal in my opinion shoud be: Modern. MFC, wxWidgets, Qt were started a long time ago and they don't use modern C++ features and standard ...
56
votes
12answers
46k views

What's the best Free C++ Profiler for windows (if there are)

I'm looking for a profiler in order to find the bottleneck of my c++ code. I'd like to find a free, non intrusive, good profiling tool. I'm a game developer and I use PIX for Xbox360, I found it very ...
48
votes
14answers
6k views

Qt goes LGPL! On Windows, is it good enough to use instead of MFC?

I just read a story I was hoping to read since Nokia bought Trolltech. Qt is going LGPL in March! This is awesome news. Who uses Qt for Windows? Does it effectively replace something like MFC? ...
43
votes
15answers
10k views

Is Qt worth learning?

I am a C# developer and work on Windows, but back in High School I took some C++ classes. We worked on console applications only. I want to learn C++ GUI programming. I have been looking at Qt and was ...
34
votes
12answers
19k views

How to debug heap corruption errors?

I am debugging a (native) multi-threaded C++ application under VS2008. On seemingly random occasions, I get a "Windows has triggered a break point..." error with a note that this might be due to a ...
33
votes
10answers
9k views

Is TCHAR still relevant?

I'm new to Windows programming and after reading the Petzold book I wonder: is it still good practice to use the TCHAR type and the _T() function to declare strings or if I should just use the ...
33
votes
21answers
7k views

What is your favourite Windbg tip/trick?

I have come to realize that Windbg is a very powerful debugger for the Windows platform & I learn something new about it once in a while. Can fellow Windbg users share some of their mad skills? ...
29
votes
7answers
10k views

LLVM C++ IDE for windows

Is there some C/C++ IDE for windows, which is integrated with LLVM compiler (and clang C/C++ analyzer), just like modern Xcode do. I have Dev-Cpp (it uses outdated gcc) and Code::Blocks (with some ...
28
votes
8answers
35k views

Is there a replacement for unistd.h for Windows (Visual C)?

I'm porting a relatively simple console program written for Unix to the Windows platform (Visual C++ 8.0). All the source files include "unistd.h", which doesn't exist. Removing it, I get complaints ...
27
votes
7answers
3k views

Programming slim C++ programs (like uTorrent) for Windows [closed]

I've always admired the original uTorrent program. It looked great, was less than 64kb, was extremely fast and had all the features I needed. Unfortunately the program is closed source (and becoming ...
23
votes
11answers
1k views

Customers angry, fighting unknown DLL dependencies

I'm a one man show developing a C++ Windows application for a customer. Over the past several months we've been running to the same problems with missing DLL dependencies on customer machines. ...
22
votes
4answers
2k views

Thrift vs Protocol buffers

I've been using PB for quite a while now, but, Thrift has constantly been at the back of my mind. The primary advantages of thrift, as I see it are: Native collections (i.e, vector, set etc) vs PBs ...
21
votes
18answers
10k views

C++ static code analysis tool on Windows

What C++ static code analysis tool are there on Microsoft Windows, and which would you recommend? Please state whether a particular tool relies on cygwin, and whether it cost money. One per post as ...
20
votes
3answers
860 views

Creating a professional-looking (and behaving!) form designer

When I began programming (some 10+ years ago), three things amazed me: Compilers/interpreters (back then I knew them as "programs that make my programs work", often followed by the qualifier ...
20
votes
6answers
713 views

C++: Platform dependent types - best pattern

I'm looking for a pattern to organize header files for multiple platforms in C++. I have a wrapper .h file that should compile under both Linux and Win32. Is this the best I can do? // defs.h #if ...
19
votes
3answers
7k views

How should I use FormatMessage() properly in C++?

Without: MFC ATL How can I use FormatMessage() to get the error text for a HRESULT? HRESULT hresult = application.CreateInstance("Excel.Application"); if (FAILED(hresult)) { // what ...
19
votes
19answers
14k views

Heap corruption under Win32; how to locate?

I'm working on a multithreaded C++ application that is corrupting the heap. The usual tools to locate this corruption seem to be inapplicable. Old builds (18 months old) of the source code exhibit ...
18
votes
7answers
9k views

How can I redirect stdout to some visible display in a Windows Application?

I have access to a third party library that does "good stuff." It issues status and progress messages to stdout. In a Console application I can see these messages just fine. In a Windows ...
18
votes
9answers
6k views

Decent profiler for Windows?

Does windows have any decent sampling (eg. non-instrumenting) profilers available? Preferably something akin to Shark on MacOS, although i am willing to accept that i am going to have to pay for such ...
18
votes
8answers
12k views

How to solve Memory Fragmentation

We've occasionally been getting problems whereby our long-running server processes (running on Windows Server 2003) have thrown an exception due to a memory allocation failure. Our suspicion is these ...
16
votes
2answers
305 views

Have a static lib, is there a simple way to know it is for 32 bit or 64 bit?

Is there any tool that can directly test if a library is made for 32 or 64 bit?
16
votes
4answers
6k views

Manual for Cross-Compile a c++ application from linux to windows?

Just that. I would like some information (links, reference, examples...) to guide me to do that. I don't even know if it's possible. My objective is to compile a program in Linux and get a .exe ...
16
votes
5answers
4k views

Embedding SVN Revision number at compile time in a Windows app

I'd like my .exe to have access to a resource string with my svn version. I can type this in by hand, but I'd prefer an automated way to embed this at compile time. Is there any such capability in ...
15
votes
3answers
257 views

How to profile a C++ function at assembly level?

I have a function that is the bottleneck of my program. It requires no access to memory and requires only calculation. It is the inner loop and called many times so any small gains to this function is ...
15
votes
5answers
517 views

Is rebasing DLLs (or providing an appropriate default load address) worth the trouble?

Rebasing a DLL means to fix up the DLL such, that it's preferred load adress is the load address that the Loader is actually able to load the DLL at. This can either be achieved by a tool such as ...
15
votes
7answers
2k views

Best way to design for localization of strings

This is kinda a general question, open for opinions. I've been trying to come up with a good way to design for localization of string resources for a Windows MFC application and related utilities. My ...
15
votes
12answers
16k 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 ...
14
votes
3answers
5k views

Windows 8, C++ and Metro GUI samples?

So I look at this (Windows build keynote 1:42:56) And I just do not get it - what I can use to create GUI from C++ and/or GUI language that will be capable to call functions from my C++ code? HTML, ...
14
votes
2answers
5k views

change boost thread priority

Im trying to change the thread priority in boost but im having no luck. Im getting a bad handle error (type 6) from the GetLastError function. I though native_handle() returned the handle for the ...
14
votes
10answers
2k views

How do I write a C++ program that will easily compile in Linux and Windows?

I am making a C++ program. One of my biggest annoyances with C++ is its supposed platform independence. You all probably know that it is pretty much impossible to compile a Linux C++ program in ...
14
votes
4answers
2k views

How do you place a file in recycle bin instead of delete?

Programmatic solution of course... Man i wish i could choose both the VB and Unmanaged as an answer ;) Thanks for both.
13
votes
8answers
541 views

Windows Safe Mode runs simple programs (at least) 3 times faster?

While doing a lot of benchmarking stuff these days, I stumbled upon something very disturbing / interesting / new to me. After doing some research getting more and more to the point (which i couldnt ...
13
votes
12answers
722 views

Is there any real point compiling a Windows application as 64-bit?

I'd confidently say 99% of applications we write don't need to address more than 2Gb of memory. Of course, there's a lot of obvious benefit to the OS running 64-bit to address more RAM, but is there ...
13
votes
5answers
1k views

How to programmatically move Windows taskbar?

I'd like to know any sort of API or workaround (e.g., script or registry) to move (or resize) Windows taskbar to another position including another monitor (if dual monitors). Definitely, we can move ...
13
votes
16answers
7k views

Memory leak tool for C++ under Windows

I need a recommendation of a free tool (even for a trial) for detecting memory leaks in C++ under Windows (Visual Studio 2005). I've looked in the net, but I would prefer a recommendation.
13
votes
5answers
6k views

What is the best way to take screenshots of a Window with C++ in Windows?

What is the best (easiest) way to take a screenshot of an running application with C++ under Windows?
13
votes
9answers
3k views

C/C++ Compiler for windows

I'm trying to port a Linux app to windows. Nothing huge, just a small command line utility. However, the last time I worked with C in Windows, it was a 'hello world' app in Visual Studio 6. I'm ...
13
votes
10answers
3k views

How do I configure and communicate with a serial port?

I need to send and receive data over serial connections (RS-232 and RS-422). How do I set up and communicate with such a connection? How do I figure out what the configuration settings (e.g. baud ...
12
votes
6answers
350 views

Fast Qt C++ compile on windows

I have a large project that uses the Qt framework and am trying to find the fastest way to compile it on my Windows install. On my linux machine at home I use 3 year old Linux Mint setup with a dual ...
12
votes
5answers
676 views

How do I detect a disabled Network Interface Connection from a Windows application?

I would like to know when a interface has been disabled. If I go into the windows manager and disable one of the 2 enabled connections, GetIfTable() only returns status about 1 interface, it no ...
12
votes
11answers
623 views

Getting The Size of a C++ Function

I was reading this question because I'm trying to find the size of a function in a C++ program, It is hinted at that there may be a way that is platform specific. My targeted platform is windows The ...
12
votes
5answers
570 views

Are there any books that “teach” WinDbg?

I know my way around the visual studio debugger pretty well. However, from time to time it seems it is not sufficient, and I know that there's WinDbg and I already have used it (the Windows GUI ...
12
votes
5answers
699 views

Differences between struct in C and C++

I am trying to convert a C++ struct to C but keep getting "undeclared identifier"? Does C++ have a different syntax for referring to structs? struct KEY_STATE { bool kSHIFT; //if the shift key ...
12
votes
8answers
18k views

How to convert std::string to LPCSTR?

How can I convert a std::string to LPCSTR? Also, how can I convert a std::string to LPWSTR? I am totally confused with these LPCSTR LPSTR LPWSTR LPCWSTR? Are LPWSTR and LPCWSTR are the same?
12
votes
8answers
7k views

Programatically disable/enable network interface

I'm trying to come up with a solution to programatically enable/disable the network card - I've done a ton of research and nothing seems to be a workable solution in both XP and Vista environments. ...
12
votes
6answers
810 views

When should BOOL and bool be used in C++?

When should BOOL and bool be used in C++ and why? I think using bool is cleaner and more portable because it's a built-in type. But BOOL is unavoidable when you interactive with legacy code/C code, ...
12
votes
6answers
12k views

How can I get the SID of the current Windows account?

I am looking for an easy way to get the SID for the current Windows user account. I know I can do it through WMI, but I don't want to go that route. Apologies to everybody that answered in C# for not ...
12
votes
7answers
6k views

How do I clear the console in BOTH Windows and Linux using C++

I need a cross platform solution for clearing the console in both Linux and Windows written in C++. Are there any functions in doing this? Also make note that I don't want the end-user programmer to ...

1 2 3 4 5 95