Click here to Skip to main content
15,909,373 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Draw on view Pin
Alan Balkany5-Jun-08 3:54
Alan Balkany5-Jun-08 3:54 
GeneralRe: Draw on view Pin
baerten5-Jun-08 4:14
baerten5-Jun-08 4:14 
GeneralRe: Draw on view Pin
Alan Balkany5-Jun-08 4:27
Alan Balkany5-Jun-08 4:27 
GeneralRe: Draw on view Pin
baerten5-Jun-08 4:39
baerten5-Jun-08 4:39 
GeneralRe: Draw on view Pin
Alan Balkany5-Jun-08 4:43
Alan Balkany5-Jun-08 4:43 
GeneralRe: Draw on view Pin
Hamid_RT6-Jun-08 1:14
Hamid_RT6-Jun-08 1:14 
QuestionBitBlt is failing on pressing clt+alt+del [modified] Pin
subramanyeswari5-Jun-08 2:24
subramanyeswari5-Jun-08 2:24 
AnswerRe: BitBlt is failing on pressing clt+alt+del Pin
Baltoro5-Jun-08 6:36
Baltoro5-Jun-08 6:36 
GeneralRe: BitBlt is failing on pressing clt+alt+del Pin
Hamid_RT6-Jun-08 1:14
Hamid_RT6-Jun-08 1:14 
QuestionDLL problem Pin
prithaa5-Jun-08 1:55
prithaa5-Jun-08 1:55 
AnswerRe: DLL problem Pin
Cedric Moonen5-Jun-08 2:13
Cedric Moonen5-Jun-08 2:13 
AnswerRe: DLL problem Pin
ShilpiP5-Jun-08 2:17
ShilpiP5-Jun-08 2:17 
GeneralRe: DLL problem Pin
prithaa5-Jun-08 21:22
prithaa5-Jun-08 21:22 
GeneralRe: DLL problem Pin
ShilpiP5-Jun-08 22:53
ShilpiP5-Jun-08 22:53 
GeneralRe: DLL problem Pin
prithaa5-Jun-08 23:09
prithaa5-Jun-08 23:09 
GeneralRe: DLL problem Pin
ShilpiP5-Jun-08 23:21
ShilpiP5-Jun-08 23:21 
QuestionGetActiveWindow Pin
iayd5-Jun-08 1:44
iayd5-Jun-08 1:44 
AnswerRe: GetActiveWindow Pin
SandipG 5-Jun-08 1:45
SandipG 5-Jun-08 1:45 
GeneralRe: GetActiveWindow Pin
iayd5-Jun-08 2:01
iayd5-Jun-08 2:01 
AnswerRe: GetActiveWindow Pin
Jijo.Raj5-Jun-08 1:58
Jijo.Raj5-Jun-08 1:58 
GeneralRe: GetActiveWindow Pin
iayd5-Jun-08 2:12
iayd5-Jun-08 2:12 
AnswerRe: GetActiveWindow Pin
Nibu babu thomas5-Jun-08 2:35
Nibu babu thomas5-Jun-08 2:35 
QuestionHow to show SIP in WinCE 5.0 ? S.O.S Pin
ttarantula5-Jun-08 0:48
ttarantula5-Jun-08 0:48 
QuestionHow to overcome this error... Pin
pl_kode5-Jun-08 0:36
pl_kode5-Jun-08 0:36 
I have a class as...
class Log
{public:	
	Log(string);
	void InitializeLog(string);
	...

  class Initialize
  {   public:
	  Initialize(string);
	  void ReadPropfile(string);
	  ....
  };  
};<pre>
next I am doin this...
<pre>void Log::InitializeLog(string p_path_name)
{
	Initialize obj(p_path_name);
	obj.ReadPropfile(p_path_name);
}
void Log::Initialize::ReadPropfile(string log_path)
{....}

From the main I call...
Log obj(path); // path is a string
obj.InitializeLog(path);
...

When I compile I get the following error. How do I get rid of this

test_utility.obj :error LNK2001: unresolved external symbol "public: __thiscall Log::Log(class std::basic_string<char,struct std::char_traits<char="">,class std::allocator<char> >)" (??0Log@@QAE@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@
@std@@@Z)
properties.obj : error LNK2001: unresolved external symbol "public: __thiscall Log::Initialize::Initialize(class std::basic_string<char,struct std::char_traits<char="">,class std::allocator<char> >)" (??0Initialize@Log@@QAE@V?$basic_string@DU?$char_tra
its@D@std@@V?$allocator@D@2@@std@@@Z)

THANKS
AnswerRe: How to overcome this error... Pin
Jijo.Raj5-Jun-08 0:59
Jijo.Raj5-Jun-08 0:59 

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.