answersLogoWhite

0


Best Answer

Project - Settings - Link Tab Click on folder that has header files and librarys in the tree view Push OK

User Avatar

Wiki User

18y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How to change the project settings of a VC plus-plus program to use other external header files and link libraries?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How can you allow a user to save their settings in a program made with Turbo Pascal 7.0?

I'm afraid I don't know Pascal very well, but you should just need to look into what input/output libraries you have available and see what they offer you for disk writing.


What are the relationship between utilities and libraries programs?

Libraries are not technically programs, but instead reusable program fragments used by applications to reduce redundant code and provide a central API for common functions, such as reading a JPEG or decoding MP3 audio. Utilities are programs used to manage the system, such as formatting disk drives or adjust the power performance settings. There is little relation to the two, except that utilities may use libraries to reduce their overall code size.


What is psen pin in 8051?

Program Store Enable: The read strobe to external program memory.


Is it possible to make a program that combines a lot of other programs?

Yes. One program can execute another program very easily -- you can even do it via scripting languages and batch programming. Morevoer, programs that provide shared code via one or more libraries make it possible for another program to execute code within those libraries, just as if that code were part of the program itself (no need to execute another program). Such programs often provide application programming interfaces (APIs) to simplify the process of integration.


What is the difference between dynamic link library and shared library?

Static libraries are compiled into the program itself, shared libraries are compiled separately and referenced by the program. This enables the program to be much smaller, but requires the shared libraries be available to run.

Related questions

Which program is used to determine which shared libraries are used by a particular other program?

That would be ldd. You type 'lss /path/to/program' to see the list of shared libraries.


Why static library are attached to w program via the linker while shared libraries are attached by the loader?

Because static libraries are, well, STATIC. They are LINKed STATICally to the program by the LINKer. Shared libraries are SHARED. They are linked by the LOADer when LOADed to SHARED libraries in system memory.


What are Settings that are automatically used when the program begins?

Default settings.


What program allows the alteration of CMOS settings?

CMOS settings are altered by the BIOS program while in setup mode.


What is the role of linker in program execution?

a linker is a computer program which takes one or more object files generated by compiler and link them link them to standard library and produce one executable object file. The libraries includes operating system libraries, language specific libraries and ,may be, user created libraries.


From what file does the msbackup program in dos receive its settings?

The MSBACKUP program in DOS receives its settings from a .set file. This is file created after you make file selections and configure backup settings.


What is Dynamic Linkage?

Dynamic linkage is the process of connecting external libraries or modules to a program at runtime, allowing the program to access functions and resources from these external sources as needed. This linkage occurs after the program has started execution, providing flexibility and minimizing memory usage by only loading the necessary libraries when required.


Pre-established settings within software program are called settings?

default setttings !


How do you program a Toyota Rav4 transponder key?

To program a Toyota rav4 tansponder Key one must go to settings. Once in settings there is a programming button that will allow you to program the key.


How can you allow a user to save their settings in a program made with Turbo Pascal 7.0?

I'm afraid I don't know Pascal very well, but you should just need to look into what input/output libraries you have available and see what they offer you for disk writing.


What is external quality control program?

Internal QC is from within the organization; external is from outside...


How you can add any new function in c library?

You are not supposed to manipulate the default libraries, but you can easily create your own libraries (both static libraries and DLLs). If you are using unix, program libtool is your friend.