Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

intregrating MFC applications with CORBA

Status
Not open for further replies.

alfusfer

Programmer
Mar 28, 2004
1
0
0
DE
Hello everybody!

I have done a CORBA application using TAO and VC++ 6.0, which works, but when I try to integrate with MCF, give me the following links error:

control_i.obj : error LNK2001: unresolved external symbol "public: void __thiscall CDrawView::DrawEllipse(int,int,int,int)" (?DrawEllipse@CDrawView@@QAEXHHHH@Z)
nafxcwd.lib(timecore.obj) : error LNK2001: unresolved external symbol __mbctype
nafxcwd.lib(apphelp.obj) : error LNK2001: unresolved external symbol __mbctype
nafxcwd.lib(filelist.obj) : error LNK2001: unresolved external symbol __mbctype
nafxcwd.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argv
nafxcwd.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argc

I only want to draw circles in the server. I have created 4 different folders: Client, Interface, Server and draw. In the last folder i have put the mfc. My intention is to call the function which draw the circles from the server when it receives an order from the client.
Perhaps my error must to an badly exposition.
can somebody help me ??
 
you should explicitly add some .lib files to additional linker deppendenties(VisualStudio .NET 2003). I don't remember exactly how is this option name and path in VisualStudio 6 but I think it is somewhere in Project->Settings->Link....

Ion Filipski
1c.bmp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top