Click here to Skip to main content
15,886,026 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionMedical Image Processing Pin
spyrus24-Feb-06 2:01
spyrus24-Feb-06 2:01 
AnswerRe: Medical Image Processing Pin
Divyang Mithaiwala24-Feb-06 2:33
Divyang Mithaiwala24-Feb-06 2:33 
AnswerRe: Medical Image Processing Pin
Saurabh.Garg24-Feb-06 2:53
Saurabh.Garg24-Feb-06 2:53 
GeneralRe: Medical Image Processing Pin
spyrus24-Feb-06 2:57
spyrus24-Feb-06 2:57 
AnswerRe: Medical Image Processing Pin
Chris Losinger24-Feb-06 3:21
professionalChris Losinger24-Feb-06 3:21 
Questionneed to access a data base without creating a dsn Pin
RavishB24-Feb-06 1:40
RavishB24-Feb-06 1:40 
AnswerRe: need to access a data base without creating a dsn Pin
David Crow24-Feb-06 2:56
David Crow24-Feb-06 2:56 
QuestionDynamically Increasing Arrays Pin
Spykraft24-Feb-06 1:30
Spykraft24-Feb-06 1:30 
Hi,
had raised a querry for this yesterday, though dint ne good ideas, so thought would share some info I found after trying out all possible things...

To create a dynamicly increasing array of objects, that is the arraysize should increase dynamically. You can follow the below steps in .NET environ

1. Create an arraylist eg
ArrayList arrayObj = new ArrayList();

2. Add the objects in arrayObj
arrayObj.Add( obj1, obj2.... );

3. Copy this arraylist to an object array of the specific class as under

ClassA[] obj1 = new ClassA[arrayObj.Count];
arrayObj.CopyTo( obj1, 0 );

Now obj1 is an array of objects of type ClassA !

Cheers!
AnswerRe: Dynamically Increasing Arrays Pin
toxcct24-Feb-06 1:55
toxcct24-Feb-06 1:55 
GeneralRe: Dynamically Increasing Arrays Pin
Spykraft24-Feb-06 2:23
Spykraft24-Feb-06 2:23 
AnswerRe: Dynamically Increasing Arrays Pin
David Crow24-Feb-06 3:02
David Crow24-Feb-06 3:02 
GeneralRe: Dynamically Increasing Arrays Pin
toxcct24-Feb-06 4:22
toxcct24-Feb-06 4:22 
QuestionHow to paint overlay graphics Pin
Gaboni24-Feb-06 0:57
Gaboni24-Feb-06 0:57 
AnswerRe: How to paint overlay graphics Pin
Boris van de Laarschot25-Feb-06 5:37
Boris van de Laarschot25-Feb-06 5:37 
Questionactivex Pin
ramyasangeet24-Feb-06 0:42
ramyasangeet24-Feb-06 0:42 
AnswerRe: activex Pin
khan++24-Feb-06 2:26
khan++24-Feb-06 2:26 
QuestionRe: activex Pin
ramyasangeet24-Feb-06 17:30
ramyasangeet24-Feb-06 17:30 
AnswerRe: activex Pin
khan++25-Feb-06 2:03
khan++25-Feb-06 2:03 
QuestionExclusive window Pin
Nishad S24-Feb-06 0:41
Nishad S24-Feb-06 0:41 
AnswerRe: Exclusive window Pin
Nibu babu thomas24-Feb-06 0:51
Nibu babu thomas24-Feb-06 0:51 
AnswerRe: Exclusive window Pin
khan++24-Feb-06 2:38
khan++24-Feb-06 2:38 
GeneralRe: Exclusive window Pin
ThatsAlok26-Feb-06 21:05
ThatsAlok26-Feb-06 21:05 
GeneralRe: Exclusive window Pin
khan++26-Feb-06 21:24
khan++26-Feb-06 21:24 
GeneralRe: Exclusive window Pin
ThatsAlok26-Feb-06 22:08
ThatsAlok26-Feb-06 22:08 
AnswerRe: Exclusive window Pin
ThatsAlok26-Feb-06 21:00
ThatsAlok26-Feb-06 21:00 

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.