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

Im new and I need Help! I keep getting an error

Status
Not open for further replies.

empanado

Programmer
Oct 16, 2002
1
US
I keep getting an error during the linking of my program
l2029: 'Writechar':unresolved external
l2029: 'Crlf': unresolved external
l2029: 'Writestring': inresolved external

What can i do to fix it???

 
are you writing the 'call' before each item?

call WriteString
call crlf
call WriteChar
 
Definitely the libs. It's a linker error: l2029. See the 'l'? It couldn't find Writechar, Crlf, and Writestring.

Are you sure you even HAVE the library that contains these procedures?

Do you know what a programming library is?
"Information has a tendency to be free. Which means someone will always tell you something you don't want to know."
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top