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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running a Program

Status
Not open for further replies.

Ranf

Technical User
May 1, 2003
6
IL
Hi,
I have a code which starts with several "include XXX.h" statments.

I can "build" and "make" its project, and compile the file.
When I'm trying to run the program though, I get an error messege saying "Unresloved External" for every function which consists in one of the ".h" files.
I'm using BC5 in WinXP.

The program runs perfectly under UNIX, with its compalier.

I have no idea what so ever why it does not run on BC5,

If you can help, I would appreciate very much since I'm totaly out of ideas,
Thanks,
Ran
 
I'm not sure but it looks like Your program needs some .DLL-file that it can't find. Try unchecking the Dynaminc Link-option, compile and retry.

Totte
 
It's been a while since I've seen C++ 5.0, but you build and make it...did you link in the object files that were created for those .h files? Or like Totte said, perhaps you have to add a dll or library file to the makefile.

Chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top