Unable to open file 'TV.LIB' in C++?

joseph

New member
I am developing a sample projects in cpp with some graphics.
I can successfully compile my c++ application , but when I try to run its shows an error called
"Unable to open file 'TV.LIB' in C++" , I try to download this file in the internet but I cant find it. Anybody please help to solve this problem.
 
.libs tend to be libraries compiled by whoever wrote the program. If you did not develop all the source code yourself, you should go back to the documentation from the coder and make sure you have all their files (and then add the .lib to your IDE). Just having their source code tends not to be enough unless their program was written in strict C++ with no self development.
 
Back
Top