using library

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • almon
    New Member
    • Aug 2007
    • 2

    using library

    I am beginner in programming.I want to make a program which reads pdf documents.For this (after googling) I found that a library pdflib is uded to do so.but i dont know how to use any library.
  • Nkhosinathie
    New Member
    • May 2007
    • 91

    #2
    Originally posted by almon
    I am beginner in programming.I want to make a program which reads pdf documents.For this (after googling) I found that a library pdflib is uded to do so.but i dont know how to use any library.

    which language are you using in programming?

    thamks.

    Comment

    • almon
      New Member
      • Aug 2007
      • 2

      #3
      I am using c++ langauge....... .

      Comment

      • Ganon11
        Recognized Expert Specialist
        • Oct 2006
        • 3651

        #4
        The first thing you will have to do is download the library and put it in the proper place...I'm not sure exactly where on your computer it should go, but I'm sure another expert can help me out there.

        Then you will have to use the proper #include statement...som ething like #include <pdflib> at the top of your program. This will make sure you can actually use this nice new library you've included.

        As for using the library's functions, that's for you to learn. You can't be sure that any of the experts here have used this library before, so you need to look up the functions you need and how to use them.

        Comment

        • sicarie
          Recognized Expert Specialist
          • Nov 2006
          • 4677

          #5
          Originally posted by Ganon11
          The first thing you will have to do is download the library and put it in the proper place...I'm not sure exactly where on your computer it should go, but I'm sure another expert can help me out there.
          This is dependent on your OS. If Windows, use the Start->Search function to look for a common library (iostream?). If Linux, use the command "find / -name iostream*". If you're not root, that will give you a lot of 'access denied' errors, but it will show the correct find results in there as well.

          Comment

          Working...