Questions tagged [self-contained]

Self-contained in programming can refer to a script, program or a library that is completely independent and contains everything necessary within its code.

Self-contained in programming can refer to a script, program or a library that is completely independent and contains everything necessary within its code. This is very useful in programming when creating libraries, as this makes them completely modular, and therefore easy to migrate from one project to another.

101 questions
0
votes
2 answers

Self-Contained C Shared Library

I am currently developing a C library for a client and to do so I needed to use other libraries like: glib2.0, libxml2, lib, openssl and gmp. After I finished my development and created the .so I tried to compile a test program with it and found out…
Caponte
  • 401
  • 1
  • 11
  • 20
0
votes
1 answer

JavaScript Array of Self-Contained Functions access to index of self

Given an array of self-contained JavaScript functions is there a way to access their respective indexes from within the function code? I would like to avoid having to hard-code those indexes in the function code: var testArr = [ (function(){return…
Gonki
  • 567
  • 1
  • 8
  • 17
0
votes
0 answers

What xp dependencies is necessary for running a self-contained javafx application?

When a self-contained package javafx application is run well in win xp and installed in other win xp computer and I received a JavaFx runtime exception; what dependencies of xp must be missing for producing this error message.
Farmer
  • 31
  • 5
0
votes
1 answer

JavaFX Native package for linux

I am trying to create native package in JavaFX8. The main build, installation and execution is working, however I have problem with permissions. Application is installed to /opt (as should always do according to documentation) but with root…
user3886894
  • 41
  • 1
  • 5
0
votes
1 answer

JavaFX - Deployed Application doesn't run on other PCs?

I have a problem with getting the Application to run on other People's machines. I have tested a self contained and the normal .jar file. When i pass them to a friend of mine who has java installed, when he opens the .jar file, there is an Error:…
0
votes
1 answer

Contained database SQL 2012 - and ODBC connection creation failing

Hi Guys Im having trouble understanding how to get around this error When trying to create a ODCB connection we cant get past the error Error 18470 Login failed for user ####. Reason : The account is disabled. Of course we have tested that the login…
MoOriginal
  • 49
  • 1
  • 8
0
votes
0 answers

Issue working with nested Java libraries

I have a plain old Java project that uses a third party library: that is, a third party JAR added to its build path. I have exported the library as a JAR, added it to another plain old Java project's build path and when I run the project, I'm…
AxiomaticNexus
  • 6,190
  • 3
  • 41
  • 61
0
votes
2 answers

How to set a launcher icon for the self-contained JavaFX2 application?

I've successfully created a native deploy ant script to make a .deb from my JavaFX2 application. However I can't seem to put a launcher icon for it. I had followed 2 steps: 1.Set the classpath for the ant-javafx to include the current directory and…
aureliangtx
  • 317
  • 6
  • 18
0
votes
1 answer

Self Contained Linux Command line tool for converting text to doc, rtf, pdf

I'm looking for a command line tool for Linux that will allow me to convert UTF-8 plain text files to various formats. My problem is that I'm working on a secure company-specific flavour of Linux, so the tool can't rely on other packages, such as…
-1
votes
2 answers

error while cleaning and building javafx app in netbeans, XML document structures must start and end within the same entity

I'm new to xml, and trying to deploy my javafx program, getting to run and clean I've got the following error, and couldn't find any answer regarding the solution thereof, so would appreciate if you helped…
-1
votes
1 answer

How to include image in a self contained javafx app?

recently I am dealing with including image in my JAVAFX program, I am aware of putting a URL or a an address of the directory which my image is located, but just like the way we put an icon in our program and deploy it, I want this happen to my…
pouya
  • 53
  • 1
  • 7
1 2 3 4 5 6
7