Search Results

3
votes
2answers
355 views

Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*?

I'm working on a large, aging code base for an MFC app. The code has been worked on by many developers over time, and as a result, we have three different ways throughout the code of dealing with …
0
votes
1answer
45 views

How do I get mnemonics in TrackPopupMenu?

I have a win32/MFC application with a context menu that I build programatically: CPoint pt; GetMenuPopupPos(&pt); CAtlString csItem = _T("&Example"); CMenu menu; menu.Create …
1
vote

Default Printer in Unmanaged C++

GetDefaultPrinter (MSDN) ought to do the trick. That will get you the name to pass to CreateDC for printin …
1
vote

What is the best way to inspect STL containers in Visual Studio debugging?

For vectors, this thread on the msdn forums has a code snippet for set …
10
votes

c++ exception : throwing std::string

Yes. std::exception is the base exception class in the C++ standard library. You may want to avoid using strings as exception classes because they themselves can throw an exception during use. If …
1
vote

Returning a const reference to an object instead of a copy

Does it matter? As soon as you use a modern optimizing compiler, functions that return by value will not involve a copy unless they are semantically required to. See …
3
votes

Disk-backed STL container classes?

I've never had to do anything quite like this, but It might be possible to do what you want to do by writing a custom allocator that makes use of a memory mapped files to back your data. Se …
0
votes

How much work should be done in a constructor?

RAII is the backbone of C++ resource management, so acquire the resources you need in the constructor, release them in the destructor. This is when you establish your class invariants. I …
1
vote

Playing .wav data of any format in Mac C++ program, similar to win32 PlaySound

I you are developing in 10.5, then AudioQueues are the API you want. They aren't as easy as a single function, but they do provide a fairly comprehensive high level API for playing all kinds of so …