Key type could be a set of variables inside a structure or class. valikac
valikac
Posts
-
Keys in a map -
Release build seg faults at vector push_backpost copy constructor of EMEventContainer dynamic allocations inside EMEventContainer? Kuphryn
-
PROCESS_INFORMATION [modified]Interesting. check out msdn CreateToolhelp32Snapshot Thread32First Kuphryn
-
working with CTreeView derived classcheck out TVN_SELCHANGED Kuphryn
-
Multitheadingall modules should be in parallel Kuphryn
-
Operator Overloadingfunction pointer correct as is X x (x.*p)() Kuphryn
-
class template methodstypically derived class is whatever is base class. in this case derived class is defined as a base class and can access base class functions template base { public: b(){} }; template derived : base { public: d{} { base::b() }; Kuphryn
-
Editbox Right click problemone approach is subclassing CEdit and handle right mouse button down Kuphryn
-
Looking for a Library...gdi+ and/or freeimage Kuphryn
-
debugging VS6.0 C (not ++)... how to view entire array contents?another approach is operator [] extracted via local variable Kuphryn
-
Problems with Dialog ButtonsAfxBeginThread() windows platform: process is comprised of main thread (UI thread on client-side) and can spawn additional threads (UI and/or worker) typically single cpu can process one thread any given moment and in this example spawn a worker thread to process data Kuphryn
-
how do I save a bitmap to hard-disk?check out these structures BITMAPINFO DIBSECTION BITMAPFILEHEADER ofstream post when need more clues Kuphryn
-
parameter questionreinterpret_cast() int x = 0 // 4 bytes on 32-bit char *p = reinterpret_cast(&x) Kuphryn
-
C++ questionelements inside array are present Kuphryn
-
function header = 0definitely Kuphryn
-
C++ questiondefinitely a() { throw 0 } try { a b } catch {} Kuphryn
-
Create a bitmap [modified]another approach is create a bitmap sized to fit both source bitmaps. arrange the bitmaps via bitblt() Kuphryn
-
Treeview creation problemcchTextMax = sNodeName.size() Kuphryn
-
Close DialogEndDialog Kuphryn
-
Subclassingone possible approach send dialog messages inside control derived class Kuphryn