Dynamic is a widely used term that, in general, describes a decision made by the program at run-time rather than at compile time.

learn more… | top users | synonyms

173
votes
14answers
62k views

Deserialize JSON into C# dynamic object?

Is there a way to deserialize JSON content into a C# 4 dynamic type? It would be nice to skip creating a bunch of classes in order to use the DataContractJsonSerializer.
17
votes
3answers
9k views

Using JFreeChart to display recent changes in a time series

How can I use JFreeChart to display just the most recent data in a continually updated time series? Addednum: A complete, working example that incorporates the accepted answer is shown here. See also ...
9
votes
1answer
10k views

How can I update a JFreeChart's appearance after it's been made visible?

How can I use JFreeChart to dynamically update a chart's appearance after it's been made visible?
484
votes
4answers
94k views

What is the difference between call and apply?

What is the difference between using call and apply to invoke a function? var func = function(){ alert('hello!'); }; func.apply(); vs func.call(); Are there performance differences between ...
19
votes
2answers
27k views

How To have Dynamic SQL in MySQL Stored Procedure

How do you build and use dynamic sql in a MySQL stored procedure?
85
votes
6answers
15k views

Dynamic Anonymous type in Razor causes RuntimeBinderException

I'm getting the following error: 'object' does not contain a definition for 'RatingName' When you look at the anonymous dynamic type, it clearly does have RatingName. I realize I can do this ...
66
votes
1answer
83k views

Add dynamically elements to a listView Android

Can anyone explain me or suggest me a tutorial where I find how can I create a listView in android, that let me to add dynamically new elements with the pressing of a button, but with the simplest ...
19
votes
7answers
37k views

How do I work with dynamic multi-dimensional arrays in C?

Does someone know how can I use multi-dimesional arrays using C? Is that possible? Thanks a lot...
41
votes
3answers
9k views

Django dynamic model fields

I'm working on a multi-tenanted application in which some users can define their own data fields (via the admin) to collect additional data in forms and report on the data. The latter bit makes ...
52
votes
10answers
42k views

Dynamic enum in C#

How do I create a dynamic enum (and subsequently use the enum choices) in C# based on values in a database lookup table (using enterprise library data layer)? For example, If I add a new lookup value ...
2
votes
3answers
309 views

How do I correctly set up, access, and free a multidimensional array in C?

I have seen dozens of questions about “what’s wrong with my code” regarding multidimensional arrays in C. For some reason people can’t seem to wrap their head around what is happening here, so I ...
27
votes
4answers
31k views

LINQ - dynamic WHERE clause?

What is the best way to assemble a dynamic WHERE clause to a LINQ statement? I have several dozen checkboxes on a form and am passing them back as: Dictionary<string, List<string>> ...
24
votes
1answer
50k views

Dynamic ListView in Android app

Is there a working example out there that demonstrates how to append additional rows in ListView dynamically? For example: you are pulling RSS feeds from different domains you then display the first ...
31
votes
3answers
4k views

Extension method and dynamic object in c#

I am going to summarize my problem into the following code snippet. List<int> list = new List<int>() { 5, 56, 2, 4, 63, 2 }; Console.WriteLine(list.First()); Above code is working fine. ...
17
votes
6answers
34k views

C++ Static array vs. Dynamic array?

What is the difference between a static array and a dynamic array in C++? I have to do an assignment for my class and it says not to use static arrays, only dynamic arrays. I've looked in the book ...
4
votes
4answers
4k views

Get all instances of a class in PHP

I would like to get all the instances of an object of a certain class. For example: class Foo { } $a = new Foo(); $b = new Foo(); $instances = get_instances_of_class('Foo'); $instances should be ...
34
votes
4answers
14k views

How do I reflect over the members of dynamic object?

I need to get a dictionary of properties and their values from an object declared with the dynamic keyword in .NET 4? It seems using reflection for this will not work. Example: dynamic s = new ...
54
votes
10answers
13k views

What's the difference between dynamic(C# 4) and var?

I had read a ton of articles about that new keyword that will ship with C# v4,but I couldn't make out the difference between a "dynamic" and "var". This article made me think about it,but I still ...
37
votes
10answers
2k views

Alternative virtual mechanism implementations?

C++ supports dynamic binding through virtual mechanism. But as I understand the virtual mechanism is an implementation detail of the compiler and the standard just specifies the behaviors of what ...
24
votes
10answers
22k views

python: How to add property to a class dynamically?

The goal is to create a mock class which behaves like a db resultset. So for example, if a database query returns, using a dict expression, {'ab':100, 'cd':200}, then I would to see >>> ...
2
votes
3answers
7k views

JQM (jQueryMobile) Dynamically added elements not displaying correctly and CSS is not applied

I'm having an issue with adding a select tag dynamically, the CSS and additional html tags (that JQM add) are is not being applied. Here is an example of how I'm adding the new select tag: ...
32
votes
4answers
3k views

Will the dynamic keyword in C#4 support extension methods?

I'm listening to a talk about C#4's dynamic keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods? public static class ...
17
votes
3answers
7k views

What is dynamic intialization of object in c++?

What is dynamic initialization of objects in c++? Please explain with an simple example...
24
votes
10answers
81k views

How can I create a dynamically sized array of structs?

I know how to create an array of structs but with a predefined size. However is there a way to create a dynamic array of structs such that the array could get bigger? For example: typedef struct ...
25
votes
5answers
62k views

Dynamic loading of images in WPF

I have a strange issue with WPF, I was loading images from the disk at runtime and adding them to a StackView container. However, the images were not displayed. After some debugging I found the ...
13
votes
3answers
27k views

Android - Dynamically Add Views into View

I have a layout for a view - <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" ...
18
votes
3answers
9k views

how to create an animated gif in .net

Does anyone know how to create an animated gif using c#? Ideally I would have some control over the color reduction used. Is using imagemagick (as an external started process) the best choice? ...
9
votes
3answers
5k views

How to dynamically allocate memory space for a string and get that string from user?

I want to read input from user using C program. I don't want to use array like, char names[50]; because if the user gives string of length 10, then the remaining spaces are wasted. If i use ...
7
votes
3answers
54k views

Add an array of buttons to a GridView in an Android application

I have an application that will have 5-15 buttons depending on what is available from a backend. How do I define the proper GridView layout files to include an array of buttons that will each have ...
9
votes
4answers
5k views

Why does appending a <script> to a dynamically created <iframe> seem to run the script in the parent page?

I'm attempting to create an <iframe> using JavaScript, then append a <script> element to that <iframe>, which I want to run in the context of the <iframe>d document. ...
4
votes
3answers
5k views

Accessing controls created dynamically (c#)

In my code behind (c#) I dynamically created some RadioButtonLists with more RadioButtons in each of them. I put all controls to a specific Panel. What I need to know is how to access those controls ...
0
votes
1answer
2k views

load dynamic control from a dropdownlist event handler, how to preserve the control after button event

I understand I need to load my dynmaic control on every postback and preferrably in Page_Init(). But my dyanmic controls are loaded from a dropdownlist selectedindexchanged event handler. Now after ...
11
votes
2answers
7k views

displaying emoticons in android

My IM app has to support emoticons. They are gif-s, and have textual representations, which are used in the input box if the user selects one of them. But I'd like to display them as images after they ...
16
votes
5answers
10k views

Dynamic loading of python modules

In python how do you dynamically add modules to a package while your programming is running. I want to be able to add modules to the package directory from an outside process, and be able to use ...
7
votes
6answers
12k views

How to use “contains” or “like” in a dynamic linq query?

The help file that came with Dynamic Linq in the CSharpSamples.zip does not show any examples of using contains or like. Are there any simple workarounds for doing this? i.e where (col like @col) ...
4
votes
14answers
2k views

Dynamic source code in C++

How to process dynamic source code in C++? Is it possible to use something like eval("foo")? I have some functions that need to be called depending on user's choice: void function1 (); ...
16
votes
4answers
2k views

Return/consume dynamic anonymous type across assembly boundaries

The code below works great. If the Get and Use methods are in different assemblies, the code fails with a RuntimeBinderException. This is because the .Net runtime system only guarantees commonality of ...
12
votes
11answers
11k views

determine size of dynamically allocated memory in c

Is there a way in c to find out the size of dynamically allocated memory? For e.g., Suppose I say char* p = malloc(sizeof(char)*100); Now is there a way to find out the size of memory associated ...
7
votes
7answers
4k views

Can search engines index JavaScript generated web pages?

Can search engines such as Google index JavaScript generated web pages? When you right click and select view source in a page that is generated by JavaScript (e.g using GWT) you do not see the ...
1
vote
3answers
2k views

Dynamic generation of buttons in Java

I am trying to dynamically generate a form. Basically, I want to load a list of items for purchase, and generate a button for each. I can confirm that the buttons are being generated with the ...
16
votes
8answers
12k views

JQuery Mobile trigger('create') command not working

JQuery Mobile is making my cry tonight. I'm trying to build custom controls so I don't repeat certain elements through my app, and it's giving me a hard time. Specifically, I have the following in ...
3
votes
3answers
350 views

How to dynamically add JLabels to JPanel?

I'm having a problem with this. I have a JPanel and normally I would create a JLabel like this: JLabel lblNewLabel = new JLabel("New label"); lblNewLabel.setBounds(0, 0, 135, 14); ...
1
vote
2answers
1k views

javascript - dynamic variables

Hi I am trying to make dynamic variables but it is saying `variable v0 (through to v5) is not defined. td.each(function(i){ eval('var v' + i + ' = \'' + $(this).html() + '\';' ); }); any help would ...
3
votes
3answers
8k views

dynamic allocation/deallocation of 2D & 3D arrays

I know about algorithms to allocate/deallocate a 2D array dynamically, however I'm not too sure about the same for 3D arrays. Using this knowledge and a bit of symmetry, I came up with the following ...
15
votes
8answers
2k views

Is there a reason to call delete in C++ when a program is exiting anyway?

In my C++ main function, for example, if I had a pointer to a variable which uses heap memory (as opposed to stack memory) - is this automatically deallocated after my application exits? I would ...
13
votes
6answers
3k views

Dynamic Lang. Runtime vs Reflection

I am planning to use dynamic keyword for my new project. But before stepping in, I would like to know about the pros and cons in using dynamic keyword over Reflection. Following where the pros, I ...
6
votes
8answers
5k views

Is there a way to dynamically execute a string in .net, similar to eval() in javascript or dynamic sql in sql?

Is there a way to dynamically execute code contained in a string using .net 2.0, in a similar way to eval() in javascript or using sp_executeSQL in tsql? I have a string value in a variable that I ...
6
votes
3answers
7k views

dynamic variable names php

I'm trying to use dynamic variable names (I'm not sure what they're actually called. But pretty much this for($i=0;$i<=2;$i++){ $("file".$i) = file($filelist[$i]); } var_dump($file0); This is ...
11
votes
4answers
4k views

When should one use dynamic keyword in c# 4.0?

When should one use dynamic keyword in c# 4.0?.......Any good example with dynamic keyword in c# 4.0 that explains its usage....
9
votes
5answers
1k views

Java Dynamically Loading a class

I am attempting to load classes dynamically into a component. I am using a file chooser to select the .JAR file that will be loaded and then a option pane to get the name of the class. I have trawled ...

1 2 3 4 5 20