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

lINKER FATAL ERROR:Unable to open file VCLE35.LIB

Status
Not open for further replies.

jd69

MIS
Mar 14, 2003
4
0
0
GB
Ive started this course but having trouble getting stuff to compile (I just loaded Borland C++ builder6 and the include libraries from a couple of discks).

I added the library MT262io.lib via the add to project tab. Then I typed in #include "MT262io.h" in the code. However I get a message Linker fatal error unable to open file VCLE35.LIB.

Any ideas??

Heres the code:
#include <vcl.h>
#include &quot;MT262io.h&quot;
#pragma hdrstop

//---------------------------------------------------------------------------

#pragma argsused
int main(int argc, char* argv[])
{
float Price;
float VatRate;
float Vat;
 
add to the linker the full directory path name where VCLE35.LIB could be found. There should be something like additionally library paths. If you use command line,
use parameter -L like this:
ilink32 ... -Ldirectory ....

Ion Filipski
1c.bmp

ICQ: 95034075
AIM: IonFilipski
filipski@excite.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top