Questions tagged [dynamic-loading]

Mechanism for a computer program to load a library (or other binary) into memory at runtime. Allows retrieving addresses of functions and variables contained in the library, executing functions, accessing variables, and unloading library from memory.

378 questions
0
votes
1 answer

Dynamic loading of template files into a div not working in IE8-

Im using the following code to load the html file containing my templates into a div dynamically it is working fine in all the browsers except IE8 and lower JS Function: function loadHTML(url, callback) { $.ajax({ url: url, …
Sandeep
  • 2,041
  • 21
  • 34
0
votes
1 answer

Library compatibility issue using convert

I'm getting a seg fault when running convert from the command line to combine a small number of JPG files into a PDF: $ convert ./file_*.jpg p.pdf Segmentation fault There, you see? To try to track down what's going on, I ran it under the debugger…
Component 10
  • 10,247
  • 7
  • 47
  • 64
0
votes
1 answer

Loading pages with php, but fade-in with jquery

Iam loading content in my pages dynamically with php. I want to add a nice affect like a fade-in with jquery. But i want my page still working if the user has javascript turn off. This is my php code to load the content: /// load page content …
user1386906
  • 1,161
  • 6
  • 26
  • 53
0
votes
0 answers

jQuery Ajax not loading content

I'm working with the code written up at w3schools (this is the link) to try to get some Ajax working on my personal webpage. Unfortunately, for some reason, it's not actually loading anything when I copy and paste this into an actual file. I have…
Benjamin Kovach
  • 3,190
  • 1
  • 24
  • 38
0
votes
2 answers

Jquery performance: what is better in most browsers, for loading and caching of js and css files?

Since I swapped from prototype to jquery i'm going through a lot of performance issues I never knew existed before. but that's not the question. The question is about this function i'm using: (note we have a huuge web application) I'm using this…
Toskan
  • 13,911
  • 14
  • 95
  • 185
0
votes
1 answer

JavaScript Factory class throws errors if function name is not a 'constructed string'

I have a Factory class that I use in JavaScript to dynamically load a class file over AJAX and then return an object. I have run into a VERY peculiar bug in the system though that throws errors in EVERY browser, but under a condition that is beyond…
kingmaple
  • 4,200
  • 5
  • 32
  • 44
0
votes
0 answers

Dynamic XAML loading performance LoadModule

We have a silverlight web application which has a configurable/customisable view. Think iGoogle. The user can add multiple tabular panels (telerik controls really) and configure them to display the information they want in the context the…
THEMike
  • 1,701
  • 2
  • 17
  • 28
0
votes
1 answer

How to scan a directory for assemblies and load them?

I would like to scan a directory for any assemblies that are not already referenced in the project then load all instances of a class that implements IMyInterface. I know that the Assembly.LoadFile method can help me out here but how do I…
George Mauer
  • 117,483
  • 131
  • 382
  • 612
0
votes
1 answer

Linking other libraries into dynamically loaded libraries

I am writing a library that is loaded dynamically by another progam. This library uses some Boost libraries (for example, thread). Is it possible to make it work somehow without recompiling the program in question? If I use the link flags…
petersohn
  • 11,292
  • 13
  • 61
  • 98
0
votes
2 answers

Checkbox reminder script doesn't remember checkbox status when dynamically load test.php which contains the checkbox

I have a working checkbox reminder script: http://mauricederegt.nl/test/index.html It simply remembers the checkbox status, so when you come back to the webpage later, it will still be checked to unchecked. This works all great. Now I need to…
Maurice
  • 1,147
  • 2
  • 21
  • 49
-1
votes
1 answer

Issue with Angular library (UMD) and dynamic loading

I have an Angular app that contains a load button. When you click the load button it renders a remote UMD library. The first time I click the load button I have the following error while importing my library using SystemJS: core.js:15714 ERROR…
Cyril
  • 161
  • 2
  • 22
-1
votes
1 answer

Google Map location change and show location marker depends upon drop down value selects by user

I want to show dynamic map location depends upon the drop-down value selected by the user. For an example, if the user selects new york city in the drop-down value means, in google map must show all list of my company location. How can I do this?
Saravanan Sankar
  • 179
  • 1
  • 3
  • 9
-1
votes
1 answer

shared object on Cortex-M4 strange symbols in dynsym section

i actually write a shared object loader, which loads with the gcc created shared-objects (ELF) on a cortex-m4 controller. Loading, dependency resolving and relocating etc works fine. But the shared object has some strange symbols in the .dynsym…
Andi
  • 21
  • 2
-1
votes
1 answer

Difference between dynamic linking and dynamic loading

Quoting Wikipedia regarding the Dynamic loading: Dynamic loading is a mechanism by which a computer program can, at run time, load a library into memory, Unlike static linking and dynamic linking, dynamic loading allows a computer program to start…
Tony Tannous
  • 14,154
  • 10
  • 50
  • 86
-1
votes
1 answer

How to dynamically load class in swift?

If I have app A with class called Hello and in it function called helloworld which print "hello world" statement and I want to use this class in another app B and dynamically load hello class in runtime and use helloworld method can any one help…
1 2 3
25
26