Click here to Skip to main content
15,895,606 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questiondelete Syntax Pin
T.RATHA KRISHNAN26-Jul-10 2:13
T.RATHA KRISHNAN26-Jul-10 2:13 
AnswerRe: delete Syntax Pin
Cedric Moonen26-Jul-10 2:17
Cedric Moonen26-Jul-10 2:17 
GeneralRe: delete Syntax Pin
T.RATHA KRISHNAN26-Jul-10 2:22
T.RATHA KRISHNAN26-Jul-10 2:22 
GeneralRe: delete Syntax Pin
Cedric Moonen26-Jul-10 2:29
Cedric Moonen26-Jul-10 2:29 
GeneralRe: delete Syntax Pin
Maximilien26-Jul-10 2:31
Maximilien26-Jul-10 2:31 
GeneralRe: delete Syntax Pin
Cedric Moonen26-Jul-10 2:38
Cedric Moonen26-Jul-10 2:38 
AnswerRe: delete Syntax Pin
Aescleal26-Jul-10 2:24
Aescleal26-Jul-10 2:24 
QuestionHow to create Multiple instance of Simple Windows Services? [modified] Pin
Game-point26-Jul-10 1:21
Game-point26-Jul-10 1:21 
AnswerRe: How to create Multiple instance of Simple Windows Services? Pin
norish26-Jul-10 3:51
norish26-Jul-10 3:51 
QuestionError while adding ON_BN_CLICKED event. Pin
Deepu Antony25-Jul-10 23:26
Deepu Antony25-Jul-10 23:26 
AnswerRe: Error while adding ON_BN_CLICKED event. Pin
ThatsAlok25-Jul-10 23:56
ThatsAlok25-Jul-10 23:56 
GeneralRe: Error while adding ON_BN_CLICKED event. Pin
Deepu Antony26-Jul-10 0:07
Deepu Antony26-Jul-10 0:07 
AnswerRe: Error while adding ON_BN_CLICKED event. Pin
Cool_Dev26-Jul-10 0:30
Cool_Dev26-Jul-10 0:30 
Questionerror C2027 ? Pin
zon_cpp25-Jul-10 20:05
zon_cpp25-Jul-10 20:05 
AnswerRe: error C2027 ? PinPopular
«_Superman_»25-Jul-10 20:09
professional«_Superman_»25-Jul-10 20:09 
GeneralRe: error C2027 ? Pin
Peter_in_278025-Jul-10 21:07
professionalPeter_in_278025-Jul-10 21:07 
GeneralRe: error C2027 ? Pin
Richard MacCutchan25-Jul-10 22:44
mveRichard MacCutchan25-Jul-10 22:44 
GeneralRe: error C2027 ? [modified] Pin
Peter_in_278026-Jul-10 14:02
professionalPeter_in_278026-Jul-10 14:02 
GeneralRe: error C2027 ? Pin
Richard MacCutchan26-Jul-10 22:44
mveRichard MacCutchan26-Jul-10 22:44 
GeneralRe: error C2027 ? PinPopular
ThatsAlok25-Jul-10 23:02
ThatsAlok25-Jul-10 23:02 
SuperMan is right, there are two way to solve above problem apart from actual problem (Struct Name mismatch).

1. As Mentioned by Superman
2. Forward Declaration ! like this

struct s2; //forward Declaration 
struct s1
{    
 CString str;    
 struct s2* ss2;
};

struct s2
{ 
   int i;  
  CString name;
};

"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
Never mind - my own stupidity is the source of every "problem" - Mixture


cheers,
Alok Gupta
VC Forum Q&A :- I/IV
Support CRY- Child Relief and You

AnswerRe: error C2027 ? Pin
zon_cpp25-Jul-10 20:28
zon_cpp25-Jul-10 20:28 
QuestionExport to excel Pin
Amin.Abdi25-Jul-10 19:42
Amin.Abdi25-Jul-10 19:42 
AnswerRe: Export to excel Pin
ThatsAlok25-Jul-10 20:03
ThatsAlok25-Jul-10 20:03 
QuestionTab contol Issue. Pin
birajendu25-Jul-10 19:32
birajendu25-Jul-10 19:32 
QuestionDisable the close Button of a MFC Dockable Panes Pin
m_code25-Jul-10 11:45
m_code25-Jul-10 11:45 

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.