Click here to Skip to main content
16,019,876 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: know the base platform Pin
JudyL_MD27-Nov-07 2:30
JudyL_MD27-Nov-07 2:30 
QuestionHow to change min,max,close to XP look Pin
hari prasad sathpadi26-Nov-07 19:32
hari prasad sathpadi26-Nov-07 19:32 
AnswerRe: How to change min,max,close to XP look [modified] Pin
Paresh Chitte26-Nov-07 20:04
Paresh Chitte26-Nov-07 20:04 
Questionhandle dependencies between projects Pin
keyto26-Nov-07 19:15
keyto26-Nov-07 19:15 
AnswerRe: handle dependencies between projects Pin
Cedric Moonen26-Nov-07 20:47
Cedric Moonen26-Nov-07 20:47 
GeneralRe: handle dependencies between projects Pin
keyto26-Nov-07 21:39
keyto26-Nov-07 21:39 
GeneralRe: handle dependencies between projects Pin
jhwurmbach26-Nov-07 22:07
jhwurmbach26-Nov-07 22:07 
AnswerRe: handle dependencies between projects Pin
ThatsAlok26-Nov-07 21:32
ThatsAlok26-Nov-07 21:32 
keyto wrote:
How can I combine two projects and make them single? these two files are dependent on each other.


are you intended to say two class is depend on each other? if yes, than use the technique known as Forward Decalration like this:-

class a; // See forward decs of class a

class b
{
 a aObj;

public:
a(){};
};


class a
{
 b bObj;
public:
b(){}
};


"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

QuestionSelf Extractor Problem.... Pin
neha.agarwal2726-Nov-07 18:17
neha.agarwal2726-Nov-07 18:17 
QuestionRe: Self Extractor Problem.... Pin
Nelek26-Nov-07 20:23
protectorNelek26-Nov-07 20:23 
AnswerRe: Self Extractor Problem.... Pin
neha.agarwal2726-Nov-07 20:39
neha.agarwal2726-Nov-07 20:39 
GeneralRe: Self Extractor Problem.... Pin
Nelek27-Nov-07 2:06
protectorNelek27-Nov-07 2:06 
QuestionSimple Question About const static Pin
paresh_joe26-Nov-07 18:08
paresh_joe26-Nov-07 18:08 
AnswerRe: Simple Question About const static Pin
Nibu babu thomas26-Nov-07 18:24
Nibu babu thomas26-Nov-07 18:24 
QuestionDymamic Edit Boxes Pin
Chandrasekharan P26-Nov-07 17:13
Chandrasekharan P26-Nov-07 17:13 
AnswerRe: Dymamic Edit Boxes Pin
Stephen Hewitt26-Nov-07 17:21
Stephen Hewitt26-Nov-07 17:21 
GeneralRe: Dymamic Edit Boxes Pin
Chandrasekharan P26-Nov-07 17:25
Chandrasekharan P26-Nov-07 17:25 
GeneralRe: Dymamic Edit Boxes Pin
ThatsAlok26-Nov-07 20:08
ThatsAlok26-Nov-07 20:08 
JokeRe: Dymamic Edit Boxes Pin
Hamid Taebi26-Nov-07 20:22
professionalHamid Taebi26-Nov-07 20:22 
JokeRe: Dymamic Edit Boxes Pin
ThatsAlok26-Nov-07 21:34
ThatsAlok26-Nov-07 21:34 
GeneralRe: Dymamic Edit Boxes Pin
Nelek26-Nov-07 20:22
protectorNelek26-Nov-07 20:22 
AnswerRe: Dymamic Edit Boxes Pin
GauranG Shah26-Nov-07 23:20
GauranG Shah26-Nov-07 23:20 
QuestionMap Pin
james_dixon_200826-Nov-07 14:41
james_dixon_200826-Nov-07 14:41 
AnswerRe: Map Pin
User 58385226-Nov-07 14:55
User 58385226-Nov-07 14:55 
GeneralRe: Map Pin
Cedric Moonen26-Nov-07 20:35
Cedric Moonen26-Nov-07 20:35 

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.