Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Close an instance Pin
Stephen Hewitt27-Sep-06 1:56
Stephen Hewitt27-Sep-06 1:56 
AnswerRe: Close an instance Pin
prasad_som27-Sep-06 1:58
prasad_som27-Sep-06 1:58 
GeneralRe: Close an instance Pin
ayol1212227-Sep-06 3:31
ayol1212227-Sep-06 3:31 
Questionerror LNK2001 Pin
Rems Kris27-Sep-06 1:24
Rems Kris27-Sep-06 1:24 
AnswerRe: error LNK2001 Pin
Rinu_Raj27-Sep-06 1:39
Rinu_Raj27-Sep-06 1:39 
GeneralRe: error LNK2001 Pin
Rems Kris27-Sep-06 1:48
Rems Kris27-Sep-06 1:48 
GeneralRe: error LNK2001 Pin
Rinu_Raj27-Sep-06 2:04
Rinu_Raj27-Sep-06 2:04 
GeneralRe: error LNK2001 Pin
Rems Kris27-Sep-06 17:43
Rems Kris27-Sep-06 17:43 
QuestionExtract all text strings from a HTML file. How ? Pin
Sakthiu27-Sep-06 0:13
Sakthiu27-Sep-06 0:13 
AnswerRe: Extract all text strings from a HTML file. How ? Pin
Hamid_RT27-Sep-06 0:21
Hamid_RT27-Sep-06 0:21 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Sakthiu27-Sep-06 0:54
Sakthiu27-Sep-06 0:54 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Waldermort27-Sep-06 1:01
Waldermort27-Sep-06 1:01 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Sakthiu27-Sep-06 1:04
Sakthiu27-Sep-06 1:04 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Rajesh R Subramanian27-Sep-06 1:08
professionalRajesh R Subramanian27-Sep-06 1:08 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Sakthiu27-Sep-06 1:23
Sakthiu27-Sep-06 1:23 
AnswerRe: Extract all text strings from a HTML file. How ? Pin
Rajesh R Subramanian27-Sep-06 1:28
professionalRajesh R Subramanian27-Sep-06 1:28 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Sakthiu27-Sep-06 1:35
Sakthiu27-Sep-06 1:35 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Rajesh R Subramanian27-Sep-06 1:38
professionalRajesh R Subramanian27-Sep-06 1:38 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Waldermort27-Sep-06 1:55
Waldermort27-Sep-06 1:55 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
Waldermort27-Sep-06 1:57
Waldermort27-Sep-06 1:57 
GeneralRe: Extract all text strings from a HTML file. How ? Pin
David Crow27-Sep-06 2:42
David Crow27-Sep-06 2:42 
Questionupload Pin
Bravoone_200627-Sep-06 0:09
Bravoone_200627-Sep-06 0:09 
Question[Message Deleted] [modified] Pin
GudduRanchi26-Sep-06 23:47
GudduRanchi26-Sep-06 23:47 
I have created a structure as
typedef struct __test{
char buf[10];
}TEST,*PTEST;

then i created a CList object as

CList<PTEST ,PTEST>my_firststruct;

then i am using to store linklist
if( my_firststruct.IsEmpty())
my_firststruct.Addhead(pTest);
else
my_firststruct.AddTail(pTest);

It is working fine. But problem start when i am using as
typedef struct __Second{
char buf[10];
}SECOND,*PSECOND;

typedef struct __test{
CList<PSECOND,PSECOND>my_secondstruct;
char buf[10];
}TEST,*PTEST;

if(pTest->my_secondstruct.IsEmpty())

when i am trying to call this is giving me error error code is
C0000005: This error is with memory. So how i will resolve this error.

Can any one help me on this...?

-- modified at 9:41 Wednesday 27th September, 2006
AnswerRe: How to Call CList in structure Pin
Rinu_Raj26-Sep-06 23:53
Rinu_Raj26-Sep-06 23:53 
QuestionRe: How to Call CList in structure Pin
GudduRanchi27-Sep-06 3:39
GudduRanchi27-Sep-06 3:39 

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.