Top "Dynamic" questions

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

C#: How to get a user control to properly auto size itself

I have a UserControl which consists of a Label (Top), a FlowLayoutPanel (Fill, TopDown flow and no wrap) and a …

c# winforms dynamic user-controls
Method to dynamically load java class files

What would be a good way to dynamically load java class files so that a program compiled into a jar …

java class reflection dynamic load
Avoid Pylint warning E1101: 'Instance of .. has no .. member' for class with dynamic attributes

Imagine a function which dynamically adds attributes to an object using setattr. The reason for doing so is that I …

python dynamic pylint
How to use a tablename variable for a java prepared statement insert

I am using a java PreparedStatment object to construct a series of batched INSERT queries. The query statement is of …

java sql variables dynamic prepared-statement
Setting of ImageView's gravity to the center in android programmatically

I want to set the gravity of an array of Imageviews,ImageIcons[i] to the center with the following code, …

android center dynamic android-imageview gravity
How to expand an array dynamically in C++? {like in vector }

Lets say, i have int *p; p = new int[5]; for(int i=0;i<5;i++) *(p+i)=i; Now I …

c++ arrays dynamic expand
Adding Html from Code Behind in Asp.net

I want to add HTML structure and control like this from code behind into a panel <div class='Main'&…

html asp.net c#-4.0 dynamic code-behind
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 …

python django dynamic django-models django-custom-manager
JavaScript Dynamic Variable Names

Ok so I want to create variables as a user clicks threw the code every click adds a new variable. …

javascript jquery variables dynamic dynamic-variables
Programmatically Add Controls to WPF Form

I am trying to add controls to a UserControl dynamically (programatically). I get a generic List of objects from my …

wpf dynamic controls