Click here to Skip to main content
15,918,485 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralDynamic memory Pin
bhangie30-Oct-03 0:29
bhangie30-Oct-03 0:29 
GeneralRe: Dynamic memory Pin
Anthony_Yio30-Oct-03 0:45
Anthony_Yio30-Oct-03 0:45 
GeneralRe: Dynamic memory Pin
BadJerry30-Oct-03 0:56
BadJerry30-Oct-03 0:56 
GeneralRe: Dynamic memory Pin
David Crow30-Oct-03 3:15
David Crow30-Oct-03 3:15 
GeneralProblem using CArray Pin
d00_ape30-Oct-03 0:27
sussd00_ape30-Oct-03 0:27 
GeneralRe: Problem using CArray Pin
Anthony_Yio30-Oct-03 0:35
Anthony_Yio30-Oct-03 0:35 
GeneralRe: Problem using CArray Pin
d00_ape30-Oct-03 0:55
sussd00_ape30-Oct-03 0:55 
GeneralRe: Problem using CArray Pin
Anthony_Yio30-Oct-03 15:25
Anthony_Yio30-Oct-03 15:25 
Just a reminder.

One disadvantage of using the vector is that you can't serialize your object in the vector like the way you do it in the CArray or CObArray

Cause vector do not inherit the CObject.

with CArray/CObArray, you could do something like this in your Serialize function of your CDocument class without much effort.

void CYoutDoc::Serialize(CArchive& ar)
{
	m_oaYourArray.Serialize(ar);
}


In the code above, each object in oaYourArray is being serialize one by one to CArchive. Of course, provided that the object you store in the oaYourArray has Serialize function overrided. It is almost effortless.



Sonork 100.41263:Anthony_Yio
GeneralRe: Problem using CArray Pin
d00_ape31-Oct-03 0:23
sussd00_ape31-Oct-03 0:23 
GeneralRe: Problem using CArray Pin
Anthony_Yio31-Oct-03 1:31
Anthony_Yio31-Oct-03 1:31 
GeneralRe: Problem using CArray Pin
d00_ape31-Oct-03 2:46
sussd00_ape31-Oct-03 2:46 
GeneralRe: Problem using CArray Pin
Anthony_Yio31-Oct-03 18:48
Anthony_Yio31-Oct-03 18:48 
GeneralRe: Problem using CArray Pin
BadJerry30-Oct-03 0:54
BadJerry30-Oct-03 0:54 
GeneralRe: Problem using CArray Pin
d00_ape30-Oct-03 1:14
sussd00_ape30-Oct-03 1:14 
GeneralRe: Problem using CArray Pin
David Crow30-Oct-03 3:26
David Crow30-Oct-03 3:26 
GeneralRe: Problem using CArray Pin
d00_ape30-Oct-03 10:19
sussd00_ape30-Oct-03 10:19 
Generaltime function Pin
diana_artatak30-Oct-03 0:10
diana_artatak30-Oct-03 0:10 
GeneralRe: time function Pin
vcplusplus30-Oct-03 2:49
vcplusplus30-Oct-03 2:49 
Generalfont question Pin
namdans29-Oct-03 23:52
namdans29-Oct-03 23:52 
GeneralRe: font question Pin
David Crow30-Oct-03 3:32
David Crow30-Oct-03 3:32 
GeneralRe: font question Pin
Andy Latham14-Nov-03 0:25
Andy Latham14-Nov-03 0:25 
GeneralThreads .... Pin
Suhail Yousaf29-Oct-03 23:32
Suhail Yousaf29-Oct-03 23:32 
GeneralRe: Threads .... Pin
Anthony_Yio30-Oct-03 0:38
Anthony_Yio30-Oct-03 0:38 
GeneralRe: Threads .... Pin
vcplusplus30-Oct-03 2:57
vcplusplus30-Oct-03 2:57 
GeneralRe: Threads .... Pin
David Crow30-Oct-03 3:34
David Crow30-Oct-03 3:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.