1
vote
C++ Binary operators order of precedence
&& (boolean AND) has higher precedence than || (boolean OR). Therefore the following are identical:
a || b && c
a || (b && c)
A good mnemon …
6
votes
C++ Comma Operator
The comma operator has the lowest precedence of all C/C++ operators. Therefore it's always the last one to bind to an expression, meaning this:
a = b, c;
…
1
vote
How to add custom item to system menu in C++?
For Windows, another way to get the top-level windows (besides EnumWindows, which uses a callback) is to get the first child of the desktop and then retrieve all its siblings:
HWND …
3
votes
when to pass fuction arguments by reference and when by address?
This has already been discussed. See Pointer vs. Reference.
…
2
votes
Quickest way to implement a C++ Win32 Splash Screen
Register a class for the splash window and create a window using these styles:
WS_POPUPWINDOW: will make sure your window has no caption/sysmenu
WS_ …
1
vote
How do I disable and then enable the Retry button in a MessageBox (C++)?
You cannot directly manipulate the MessageBox controls, but you can use a hack. Install a WH_CBT hook just before displaying the dialog and handle the HCBT_ACTIVATE event. …
13
votes
What are some of the drawbacks to using C-style strings?
C strings lack the following aspects of their C++ counterparts:
Automatic memory management: you have to allocate and free their memory manually.
Extra capacity for concatena …
3
votes
#include header guard format?
I prefer this format:
#ifndef FOO_HPP
#define FOO_HPP
/* ... */
#endif // FOO_HPP
A simple #ifndef instead of #if !defined(...) …
11
votes
What is the best way to test whether a file exists on Windows?
According to the venerable Raymond Chen, you should use GetFileAttributes if you're superstitious. …
1
vote
Convert wide character strings to boost dates
You can use the from_stream parser function:
using boost::gregorian::date;
using boost::gregorian::from_stream;
std::wstring ws( L"2008/01/01" );
date d1(from_stre …
3
votes
Rolling my own exceptions
You can use any standard exception type as a base, but it will really help the users of the class (including yourself) if you pick the right one:
If the error is something that could …
2
votes
What does a const pointer-to-pointer mean in C and in C++?
You were right in your interpretation. Here's another way to look at it:
const MyStructure * *ppMyStruct; // ptr --> ptr --> const MyStructure
MyStructure *c …
4
votes
What’s the difference between BSTR and _bstr_t ?
BSTR is a raw pointer, while _bstr_t is a class encapsulating that pointer.
It's the same difference as char* vs. std …
1
vote
accessing bitmap resources in a C++ DLL from VB6
Since you are using the numeric ID of the bitmap as a string, you have to add a "#" in front of it:
DLLHandle = LoadLibrary("Mydll.dll")
myimage = LoadBitmap(DLLHandle, "#101") ' n …
2
votes
How to cancel the ‘system key down’ state in Windows
When you release the Alt key, the system generates a WM_SYSCOMMAND/SC_KEYMENU message. Futhermore, unless you press a key to open a specific popup menu, the lparam will be …
