This tag should not be used. If your question is about a particular library, use the tag for that library instead. If it is about using libraries generally, use one of [libraries], [shared-library], [static-library], [class-library], etc. If it is about liberal politics, try politics.stackexchange.com.
Questions tagged [lib]
761 questions
-3
votes
1 answer
How can I call prebuilt APIs with .lib and .dll file in go?
I have a PCI-E capture card, and I have to use APIs for it supplied by the manufacturer.
They provide prebuilt .lib and .dll file.
How can I use it in Golang?
Or is it possible to get the output of capture card by using GOCV?

user9716692
- 71
- 9
-3
votes
1 answer
How to link against static and dynamic libraries at the same time?
I am using QtCreator for my project, I need to link some libraries dynamically because of license and I have some larger static library available, but I use only a small portion from it. When I try it, I got an error mixing builds.…

Andrej Fogelton
- 123
- 11
-3
votes
1 answer
Java import /lib files
I have a project with globally this architecture:
rtreeProject
--com
----geospatial
------Point.java
------Rectangle.java
--lib
----gnu
------trove
----org
------slf4j
How can I import classes from my lib folder into the Rectangle.java file from…

Ben
- 337
- 4
- 10
-3
votes
1 answer
Library to calculate date in Javascript
I have a question about a method to calculate total days by javascript.
Example:
- startDate = 20170916 and closeDate = 20171224 => 99 days
What libs can I use to write this method?
Note that can't use moment.js libs and I'm a newbie of js

Alex Le
- 93
- 3
- 13
-3
votes
1 answer
I cound not able to install monodevelop in ubuntu 14.04
I want to install Monodevelop in ubuntu for that I follow instruction provided on http://www.mono-project.com/download/#download-lin
After following these following.
I put command sudo apt-get install mono-complete monodevelop
But unmet…

Rajendra Kumar Yadav
- 41
- 4
-3
votes
1 answer
Convert header and lib into a dll to use it with c#
i'm trying to develop a software based on a lib and header c++ files given from another company. I don't know how the lib is built, i can only see the signature of the function inside the header.
Since i'm asked to make a GUI over this software i…
-3
votes
2 answers
Android custom textview
I need textview where first letter is big capatalized like on the photo. What is the best library or solution to achieve that?

Евгений Речков
- 329
- 4
- 16
-4
votes
2 answers
What type of this element?
Does anyone know the kind of html-element or library which support to build a similar one.

dat nguyen
- 1
- 4
-4
votes
1 answer
Can't include headers from a static library (VS17)
I've made a static library with some .h files and need to include that library into my second project, which will also be output as a library. After copying first .lib file into the current project source folder, adding it (maybe redundantly) as an…

Stefan Stanković
- 628
- 2
- 6
- 17
-5
votes
2 answers
Port this C code to Delphi/Lazarus
I have this code in C that I want to port to Delphi, but i can't make it work.
.CPP CODE
#include
#include
#include
#include "GLibExp.h"
#pragma comment(lib, "GLib.lib")
void MyCFunc(LPCTSTR GStr)
{
GFile GVar =…