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

0
votes
0answers
16 views

How can I dynamically change the Twitter Profile and Search?

I can display two Twitter boxes next to each other like this, using the Web Helpers package in a Razor 2 asp.net website. <div id="dynaMashTab-Twitter" > <span id="spanProfile" ...
0
votes
1answer
43 views

Dynamically created DOM element not increasing div size

I have a selection drop down, which dynamically changes based on the first selection. I also have the option to add more selections and this creates more drop down select boxes dynamically. ...
0
votes
3answers
33 views

How to create dynamic external javascript files?

I am thinking about how some online services create dynamic JavaScript files. These files have the .js extension, but their content is not static. I found a sample file here. It seems that this script ...
0
votes
0answers
39 views

Syntax error when using php to serve up dynamic sql pivot table

This dynamic pivot sql runs perfectly in MS Studio, however I can't get it to run with php on the server. I get Incorrect syntax near ','. And Incorrect syntax near 'p'. I've tried every type of ...
-1
votes
1answer
24 views

Google map with dynamic and multiple destinations

I have edited this code but in distance textbox I want to display total distance.How to do? It calculates distance between 2 waypoints.I tried to add all diatances but it doesnt work. ...
0
votes
3answers
43 views

Dynamically add input fields when needed

I'm trying to add extra input fields to my HTML form as they are needed. Here's my code: My code JS $(document).ready(function(e) { var i = $('.form-inputs input').size() + 1; ...
0
votes
1answer
37 views

Filling a dropdownlist dynamically

So I'm working in ASP.NET MVC4 and I want to load a dropdownlist dynamically. This is my modelclass: public class Meeting { public int MeetingId { get; set; } [Required(ErrorMessage = "A name is ...
0
votes
0answers
16 views

dynamic radio button select by name passing by post

play.js //frm select character submit to character selection document.getElementsByName("char_choice").onclick(function() { //$("#character_select_data").click(function(){ var chari = ...
0
votes
2answers
62 views

Dynamically allocate an array of unspecified size in C

I want to take an input in c and don't know the array size. please suggest me the ways how to do this.. hello this is a sample string to test.
0
votes
0answers
7 views

Dynamic Programming Card Game

Please check out this problem I have: "You and your eight-year-old nephew Elmo decide to play a simple card game. At the beginning of the game, the cards are dealt face up in a long row. Each card ...
3
votes
0answers
63 views

List<T> versus pivoting in the database for databinding to grid

Introduction and tl;dr In my example i have teachers, students and courses. I would like to have an overview which course is teached by whom in which rooms and all the students in this course. You ...
-1
votes
0answers
33 views

where to start learning Dynamic programming? [closed]

I want to learn Dynamic programming but don't know where to start from? I have fair knowledge about Data structures but as far as dynamic programming is concerned, I don't know anything. I need some ...
1
vote
2answers
36 views

Dynamic PDO Query - With AND / OR

I have two issues, the first as the title states is that I need to have dynamic query with AND/OR in it. I fully understand the AND part (I've done a bunch of these) however, the OR part is very ...
0
votes
0answers
7 views

Dynamic Programming- arrange cubes in form of rectangle

I need to find the minimum number of moves to place cubes in a rectangular form on a given flat platform of NxN squares. the side of the cubes are same as the floor squares. the cubes are placed just ...
1
vote
1answer
41 views

C++ Outputting strings from a .txt file in to a dynamic array outside of a member methods local scope

To start with, is what I'm asking possible? I currently have a program with one member method (Read) that reads in strings from a .txt file locally in one member method and just outputs the same data ...
2
votes
1answer
49 views

Does MonoTouch support C# dynamics? [duplicate]

C# Mono development for iOS has certain restrictions due to Apple's requirement to precompile the code, i.e. no JIT compilation is allowed. Because of this calls such as Reflection.Emit are not ...
-1
votes
0answers
8 views

make ajax content auto refresh after every 20 second

After doing a lot of efforts i am posting it here bocz i got no solution. See this code <script type="text/javascript"> //To include a page, invoke ajaxinclude(files_array, "ROTATETYPE") in ...
0
votes
1answer
17 views

Vaadin - Iterate over components in a layout

I'm working on a project in Vaadin 7. In that I need to parse over all the components in a Layout and find a component I need. The above is the pictorial representation of my layout. I'm ...
0
votes
1answer
32 views

Dynamic Json deserialization

Deserialize JSON into C# dynamic object? Following above question, I copy the dynamicJsonDeserilization and trying to use that in my application. then I try to access the object as var Data = ...
0
votes
2answers
28 views

Symfony2 - Reuse form type multiple times in a form

I am trying to make a form where a user can insert his curriculum vitae data. At the moment i have created an experience form type containing all the experience related fields. The problem is that ...
1
vote
0answers
22 views

Unlimited/Dynamic ViewPager in both directions

There is one use-case of ViewPager I've never seen pretty implemented. ViewPager is more or less static structure. It's not so hard to add Pages to the right side (appending to Model and displaying ...
0
votes
2answers
36 views

.NET validate dynamically created fields

I'm working on a page where I have to dynamically add multiple fields. I've basically completed the job but I'm being held back by the validation. The problem is that the form fields need specific ...
2
votes
0answers
42 views

How do I create a dynamic tree in c# that adds up parents to respective children then recusively goes back through?

I want to be able to go through a loop with if statements that will store a set of data. After the first loop gets its values I want to make a loop that goes through the list of values just created. ...
0
votes
3answers
29 views

How to get a value from edittext dynamically?

I have tried searching unsucessfully. I need to have an edittext always checking if its value is changing and if it contains something do something. I have looked at a OnTouch listener but it is just ...
0
votes
0answers
9 views

Dynamical tab page name using viewpageindicator

I am learning android and in my learning process, I am trying to have some tab-pages (dynamically added). I am using viewpagerindicator library. The current problem is, the tab page names are 'final' ...
2
votes
1answer
29 views

C++ DLL not executing function after injection

Okay so I made a DLL injector in VB.net a while ago. It works fine with any DLL except for mine. So I know the problem is with the DLL. Here is the injector's code: Private Function Inject(ByVal pID ...
0
votes
2answers
33 views

VB.NET: How to dynamically select a list view item?

I need to dynamically select an item in a listview based on what was selected previously. The items that have been selected in the past are retrieved from a database and added to an Arraylist. These ...
-1
votes
1answer
37 views

How can I force the contents of a div to refresh?

I am now able to replace html text dynamically (How can I replace html text dynamically?), but I need the tweets to refresh when the inputQuery val replaces the text/caption/heading, too. IOW, I can ...
0
votes
0answers
13 views

“Dynamic” parsing engine in Android app that I can update easily and quickly

I have written an Android app that people use to view a private forum (for a game). The forum seems to be handwritten or something and does not support Tapatalk or similar, and it is a pain to browse ...
0
votes
1answer
32 views

Dynamic GUI in Python? [closed]

I had a question about whether it would be possible to make something like the following in Python: I'd like to have a GUI such that, upon starting there are simply two fields allowing you load two ...
1
vote
0answers
47 views

How to get a property in a dynamically created Object in a dynamically created Array

Basically, I have this dynamically created object being sent back from a PHP script that I put into an array. I store where it's located in the array in the tools the user uses to select what to view ...
1
vote
1answer
55 views

Exposing properties of an ExpandoObject

I've got an ExpandoObject that I'm sending to an external library method which takes an object. From what I've seen this external lib uses TypeDescriptor.GetProperties internally and that seems to ...
0
votes
2answers
61 views

add a button click event dynamically in asp.net 4.5 c#

I have some questions to this post [1]: How can i create dynamic button click event on dynamic button The solution is not working for me, I created dynamically an Button, which is inside in an ...
0
votes
0answers
9 views

Add custom classes to propertygrid via reflection

I'm receiving a object from a webservice which can be anything, and i'm attempting to add it to a property grid. However, every "custom class" will be added but it is not expandable. Every anwser ...
0
votes
0answers
26 views

Confusion creating ImageButton dynamically and adding an OnCommand function

I have the following code: var r = new ImageButton { ID = "Image" + _count, ImageUrl = "~/Images/" + _count + ".bmp", Width = obj.Width, Height = obj.Height }; ...
1
vote
0answers
22 views

How to get the account name in dynamics cm using JS?

hi i want to get the name of the account in dynamics crm 2011, created on a specific date. for example, if an account is created on 4/3/2013 and the user also gives the same date then how can i get ...
1
vote
6answers
50 views

How can I replace html text dynamically?

I'm adding the text "I Tot I Taw a Puddy Tat!" to the top of a page with jQuery this way in the ready function: $("#Twitterati").html("<h3>I Tot I Taw a Puddy ...
0
votes
2answers
25 views

For Loop Creation of new instance of Array in ActionScript 3

Is there any way to create instances of array in a for loop? Here's my code... var recArrCon1:Array = new Array(50); var recArrCon2:Array = new Array(50); var recArrCon3:Array = new Array(50); var ...
0
votes
1answer
21 views

How to receive a dynamic variable from a website (android)

I'm not exactly sure how to state this but here's the basic idea of what I'm trying to do: I'm making a radio player application in Android Java. The function I'm looking at including is a dynamic ...
0
votes
0answers
8 views

How to delay setting db connection until controller method is called in Cake 1.3.15

Taking over someone else's CakePHP project and have run into a problem where the database connection can not be configured until a controller method is called. The reason it can't be determined when ...
0
votes
1answer
26 views

checking dynamically named selects using jquery

How can I use jquery to get the value of a dynamically named select? I have several (no exact number) of selects that populated like this: <?php for ($i = 0; $i < count($manifest); $i++) ...
0
votes
1answer
48 views

Bash dynamic variable names

I am confused about a bash script. I have function grep_search() { magic_way_to_define_magic_variable_$1=`ls | tail -1` echo $magic_variable_$1 } I want to be able to create a variable ...
0
votes
0answers
25 views

Improve loading speed of dynamic contents over the world

I've a website that redistributes dynamic contents. It takes the data from a database and then it generates dynamic images with them. Data being updated about every 3 minutes. My server is located in ...
0
votes
4answers
35 views

Trying to select child elements that don't have a dynamically added class

I have a form that's in several sections. As the user fills out the form, I want to mark each section completed as they finish it. To be completed, all required fields must pass a client-side ...
0
votes
0answers
11 views

How to dynamically change actionlink text in WebGrid?

In a webgrid I am having actionlink as Active. When I click on it, It should be changed into InActive actionlink and vice versa. How can I format the actionlink?
1
vote
1answer
28 views

determine os architecture and bitness in java

I want to be able to dynamically determine the OS, architecture, and bit-ness in my Java application. For example, I would like my application to know when it is on a Solaris 32-bit sparc machine or ...
0
votes
2answers
33 views

How can I dynamically add a browser tab?

Since using iframes to house external pages are, by some accounts "not the preferred method" and even disallowed by some sites (flickr, for one), I now want to dynamically generate browser tabs. e.g., ...
1
vote
3answers
62 views

PHP and mySQL Dynamic Query

Im trying to create a dynamic query based upon any or all selections from option values selected by a user. Eg if they select a Project ID a query will return with the project ID, size and a lesson ...
0
votes
3answers
38 views

jQuery max value of fields and min in form

I'm little bit new with jQuery so I have some questions: I have a form with 2 links where you can add 1 field and remove 1 field. But the problem is I want to stop at 10 fields, so you max can add ...
0
votes
0answers
13 views

Dynamic fix navigation error

i have a dynamic fixed header and nav bar which i want to be fixed when i scroll down to the page since its a one page website. but i seem to face an issue when i scroll down the header fixes alright ...

1 2 3 4 5 193