stick_thai wrote: > HI. > > i'm programming in C++ using VC 8.0 prof. for a while now. at the > moment i reached the point where i need to include already existing > libraries, because it's to time consuming to write all the codes by > myself. one example of such a library is the following: > http://www.robertnz.net/nm10.htm > > unfortunately, even after reading the documentation for this matrix > library, i am not able to add this code to my program. i don't even > know how to start and what to do at all. > > it would be very kind of you, if you could give me some hints, how to > use this library in my IDE. > > THANKS A LOT! > STICK.
To use the aforementioned library, you probably want to add a 'makefile' 'project' to your 'solution'. The 'makefile' should be part of the distribution you downloaded. Then, you make your 'startup project' dependent upon the new matrix library project (the just-created makefile project) using 'Project Dependencies'. Finally, build the solution and, if everything goes to plan, you should have an executable with the library statically linked in. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* VerifyMyPC 2.0 Change tracking and management tool. Reduce tech. support times from 2 hours to 5 minutes. Free for personal use, $10 otherwise. http://www.CubicleSoft.com/VerifyMyPC/
