How to make a virtual tree control -- really virtual
A comprehensive article on how to make a CTreeCtrl really virtual -- good for handling large data trees.
A comprehensive article on how to make a CTreeCtrl really virtual -- good for handling large data trees.
Discover a templated visitor pattern base class designed to get around problems that some compilers that have with certain aspects of modern template techniques, particularly typelists and meta-programming.
Learn how to develop C++ wrapper functions around .NET classes.
Learn how to create a modal dialog with animations when shown or hidden.
Versioning your collections is important when the data held by a collection can be modified while a client is enumerating that data. Tom Archer presents a versioning technique he's told Microsoft uses internally.
The article describes a way of creating class objects by naming its classes. This way permits you to create a new class object by calling a function or class method that receives as input parameters pointer to CRuntimeClass object. In general, it shows you how to design a mechanism that creates a user-selected dialog window in its own child thread.
A templated base class for use when you want a once-only initialized static class.