library

C++ libraries for rendering PDFs

I'm looking for a (preferably LGPL'ed) PDF-rendering library that I can use on Mac OS X, Windows and Linux using C++. So far I found:(updated with content from answers below) Poppler GPL very easy to use Qt4-backend GhostScript GPL (depending on the version of GhostScript) command line only does not support PDF boxes MuPDF (Sumatr...

Java Library and Class Path Problems

Quick personal background: I was hired a few months ago as the sole .NET developer (C#) by a company whose other devs are all php devs. A week into the job I was told they wanted to switch to Java instead of doing .NET. Not an ideal situation, but I'm trying to make it work. I don't think I understand the relation between a project's li...

Document library in .NET

Hi, I'm looking for document library. Which allow users to tag files in certain categories but let files saved on PCs in network. This database let users search on intranet website. And use IIS as Web server and MSSQL as db server. Any Ideas? Thanks! ...

How to remove unwanted blocks from MS enterprise Library?

Hi, I installed MS enterprise Library in my system. Out of all blocks i want to use only Exception Handling block. How to use it in my application.Also i want to remove all the other block from my system. How to do that. ?? please guide ...

Extract statically linked libraries from an executable

I'm not sure if this is even possible, but given an executable file (foo.exe), with has many libraries which has been linked statically. Is there any software that extract from this file the .lib ( or .a ) that lay inside the executable ? Thanks. ...

Where can I find a Python lib documentation??!!

Hello again. Am looking for a full and official Python standard lib reference. I can't seem to find proper documentation for Python's built-in library anywhere, similar to javadocs. Perhaps I'm not looking hard enough. Thanks ...

Library for OAuth Consumer (Java)

Hi, I'm looking for a Java library that helps me building an OAuth Consumer. I must be able to receive OAuth signed requests and determine whether they are valid or not (checking the signature, timestamp and nonce values). Do you know if there's something out there that makes this task easier? thanks a ton! ...

problem with netscape portable runtime (nspr)

I'm trying to compile an app that mkese use of the nspr library. I'm running to an error though with this part of the make file: g++ -ljs -lboost_thread-mt -lboost_regex -lboost_system-mt -lnspr -lxerces-c -lmysqlpp -c -g -I/usr/local/include/boost-1_38/ -I/usr/local/include/mysql++ -I/usr/include/mysql -I/usr/local/include/nspr -I/us...

Has anyone seen a 2-Sat implementation

I have been looking for a while, but I just can't seem to find any implementation of the 2-Sat algorithm. I am working in c++ with the boost library (which has a strongly connected component module) and need some guidance to either create an efficient 2-Sat program or find an existing library for me to utilise through c++. ...

What are the Gotchas and Issues I should be aware of with SFML?

I've been using SDL for a while to prototype small things and to learn more about graphics programming. Then I saw SFML and wanted to give it a try, saw that it was more object oriented and fixed some issues I felt SDL had. But since I know little about the library itself, what are it's main flaws and other issues that I should be awar...

Boolean Expression Evaluation in Java

Hey everyone, Is there a relatively simpler (when compared with writing a parser) way to evaluate boolean expressions in Java? I do not want to use the JEP library. I have a String expression something like: (x > 4 || x < 8 && p > 6) [ I will replace the variables with values. Is there a way by which I can evaluate this expression? The ...

Tree view GUI widget/gui library that can do multiple icons?

Screenshot I'm looking to recreate this in Python; I can't find a library that seems to have what I need. Are there any GUI libraries that might possibly have this? - I have scoured wxWidgets (which is my preferred gui library) but they have nothing similar. I have a script already that uses a standard wxTreeCtrl but it has no provisi...

When trying to include '#include <boost/regex.hpp>' I get: 1>LINK : fatal error LNK1104: cannot open file 'libboost_regex-vc100-mt-gd-1_39.lib'

Not sure why i get that, I downloaded libs from here and while I have a lib called 'libboost_regex-vc90-mt-gd-1_39.lib I don't have one which is called 'libboost_regex-vc100-mt-gd-1_39.lib', renaming the one with vc90 to vc100 works but I'm not sure if this is the ideal solution? ...

How to catch exception thrown from library in GCC C++?

When i use dlopen to dynamically load a library it seems i can not catch exceptions thrown by that library. As i understand it it's because dlopen is a C function. Is there another way to dynamically load a library that makes it possible to catch exceptions thrown by the lib in GCC? In Windows you can use LoadLibrary but for Linux i ha...

What is a socket library?

While reading about OpenSSL I've stumbled upon sentence: "It would be nice if security was as simple as linking in a different socket library when building a program". What is this mentioned socket library? What is it used for (i.e. in Java or C#)? ...

Free Barcode 128 library for C#

Could anybody recommend a free barcode 128 library for C#? Would appreciate any help! ...

Is there a C header parser tool for wrapper generation like gccxml?

I need to write a few c header wrappers for a new programming language and would like something like gccxml but without the full dependency on gcc and the problems it gives on a windows system. Just needs to read C not C++. Output in any format is okay as long it is fully documented. Need it for Curl, SQLite, GTK2, SDL, OpenGL, Win32 A...

How to tell whether a dylib is compiled for 10.6 or 10.5?

I was trying to use otool but I couldn't find a way to do it. Basically I'd like to know whether a dylib is compiled only for 10.6 or if it supports 10.5. Thanks, Rui ...

Determining existence of DLL before using it

Using Visual C++ 2008 Express Edition. I'm linking my application with an import library (.lib) for a DLL that might or might not be present on the target system. Before you ask: I cannot distribute the DLL with my application. If the DLL is not present, as soon as I call a function from the DLL (but not sooner!), I get a message like ...

Concept of "Sticky" library on AIX ?

We have a problem when loading a dynamic library multiple times (>200) on AIX. The page : http://www-01.ibm.com/support/docview.wss?uid=isg1IY93339 states a similar problem and the suggested solution is to "make the library sticky" to load it in memory a single time...But does the concept still exist on AIX 5.3 and above ? It does not se...