library

Using a .lib built with Visual Studio in Eclipse/CDT/gcc

Hello everyone I am having some trouble compiling a programm with gcc on windows which was initially developed with Visual Studio. So far I was able to resolve almost all problems like missing header files and such, but now I am stuck at one last thing: gcc fails to link to one of the third party libs my program uses (FlyCapture2.lib). ...

Trying to use/include/compile 3rd party library, libmagic. C/C++ filetype detection

After looking for a way to detect the filetype of a file stream, I found that the Unix file command uses libmagic and I'm trying to make use of the library myself, but I can't get it to work. I've rarely integrated 3rd party code in my own, so that's probably a big part of my problem as well. Why: I'm doing this because I have a portab...

loading the xml in webpart

how to upload the xml file in the sharepoint library ...

Linking C library with non-standard name

Hello, I am using gcc to compile a program which I need to link to a C library with non-standard name; it is called stuff.a instead of libstuff.a. I cannot change the name of the file (permission issues). I don't want to include the full library (i.e. using gcc program.c stuff.a -oprogram) I want to compile as gcc program.c -L/path...

Is there a way to create external link in Mercurial

I'm trying to include an older version of some lib into a new project. Is there a way to notify the current repository that I only need specific revision of other library, and not the tip? ...

AsyncFileUpload has logic error in AjaxControlToolkit, when component in a different tab, so not displayed

I am using the Nov version of the AjaxControlToolkit, and I found a logic error, but I am trying to figure out the best way to fix this, by Saturday, so that the program will work on IE. This problem only has an error on IE, it works on Firefox3.5. I have a AsyncFileUpload component on a tab that appears to not be visible when this fun...

Creating a library of template functions

I've been developing a library of mostly template functions and managed to keep things organized (to some extent) in the following manner: // MyLib.h class MyLib { template<class T> static void Func1() { } template<class T> static void Func2() { } }; And obviously calls would be made like this: MyLib::Func1(); As y...

Keyboard Layout library to find Neighboring Keys given an input key (java preferable)

Does anyone know of a library (preferably java) that can give me neighboring keys given a key input for US_ENGLISH standard keyboard? E.g. if I input the character 'd', I should get the following characters returned: [w,e,r,s,f,x,c,v]. Alternatively a grid manipulation api would work too (so that I can instantiate a grid with a qwerty ...

Is there a library similar to lxml or nokogiri for Java?

I want to do some screen scraping, ideally using CSS selectors and not XPath. Is there a library similar to ones in Ruby or Python? ...

VMime and odd "commercial" LGPL licensing?

Greetings, I'm looking for a MIME library, which is available under the LGPL. After some googling, I found VMime. After browsing their site some, I came across the Licensing page, which confuses me a bit. Firstly, they offer VMime under the terms of the GPL, which is pretty clear. Secondly, they offer VMime under a "commercial" licens...

Best libraries, extras and things for C# (ASP.NET included)

I wanted to know what would some good libraries, IDE's, extras, for C# (include web development in ASP.NET be) for example: Libraries Mono Project - Cross platform C#.Net implementation, also able to run ASP.NET specific stuff IDE's Sharp Develop - OpenSource C# IDE (Includes compiler) MonoDevelop - OpenSource and cross platform C...

Convert image data to character array

I'm building a mobile advertising sdk for the iPhone and I assume that the only way to store the images that will represent the button icons for the landing page controller [in the library] is to convert the images into character arrays. When I have the character array defined inline like: const char backButtonData[] = { 0x00, 0x01, 0x...

zend framework - is it possible to make a 'redirect' script in the library

Is it possible? How? Let's say I have the ff: class My_Redirect { function test() { // some testing // another testing // redirect script } } Thanks in advance! ...

App looking for an invalid dynamic library

I keep getting multiple error windows for an app i'm developing asking for ._libpal_bullet.dll when it should really be just libpal_bullet.dll. The weird thing is after I get all the error messages, the app runs anyway using the correct dlls that exist in the same directory. How can i get rid of these errors? ...

iPhone OSC Library

Hello, I know there are some iPhone Apps out there that use OSC and i'm wondering now if someone of them released a nice library for it. I googled a loot around but didn't found anything. Maybe someone knows how to google better then me :) I'm currently trying to get OSCKit to work on the iPhone, but i'm not that good in iPhone develop...

Does a library to prevent duplicate form submissions exist for django?

I am trying to find a way to prevent users from double-submitting my forms. I have javascript that disables the submit button, but there is still an occasional user who finds a way to double-submit. I have a vision of a re-usable library that I could create to protect from this. In my ideal library, the code block would look somethi...

iPhone Library not loading (not linking)

Hi, I'm working on an iPhone application and I'd like to use the XFSM libraries (see http://fsmbook.com for info) for interacting with finite-state machines. Anyway, I included the two libraries into my program using "add existing frameworks" but when I compile I get the error: dyld: Library not loaded: libbreadline.dylib Refere...

Which C++ library for ESRI shapefiles to choose?

Does anyone have an experience in processing (reading) ESRI shapefiles (http://en.wikipedia.org/wiki/Shapefile) from C++? I have found at least 2 open source libraries: ShapeLib C library (http://shapelib.maptools.org/) and OGR (http://www.gdal.org/ogr/). Which one is better? Does anybody used one of them? How about the experience? ...

select multiple images from photobook library at once

hello i would like to know if there is a way to load multiple images from a photobook on the iphone in one step into an array or something like that. i've seen a iApp with this kind of feuture before, but can't remember the name of this app anymore. in this app I had the possibilty to choose the first image. after that, a menu from bel...

comparing GIF images pixels

I need to compare 2 same-size, nearly identical images for exact differences in the RGBs of every pixel. I would like to find a tool that already does it... seems nowhere to be found on google, strangely. If I could even find a tool to print out the RGB values of every pixel I could compute it by hand (the images are small enough) or l...