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
11 views

Hyper-linking moving objects within an image?

I want to know if it is possible to create an image with hyper-links inside, such as one would make for a HTML image-map but with the hyper-linked objects actively moving around within the boundaries ...
1
vote
1answer
85 views

Pass concrete object type as parameter for generic method

I have an API using generic method as follow public static class DataProvider { public static Boolean DeleteDataObject<T>(Guid uid, IDbConnection dbConnection) { // Do something ...
0
votes
0answers
11 views

Dynamic MVC [authorization] for multiple domains

I am currently developing an MVC intranet web app. The same web app will be deployed across multiple domains. I am using windows authorization and authorizing against groups in app's local domain. I ...
-4
votes
4answers
58 views

Assigning Memory to a 2-d Array [closed]

I am assigning memory to 2-d array for which,i know the depth int *array[size]; for(int i=0;;i++) { array[i]=new int[10]; } Am I doing it right?
0
votes
2answers
30 views

How do you change the content div based on the navigation hover

I want to display my contact form when the user hovers over my navigation menu "contact" list item using css. So I want to have a solution that explains how I can use css to hover over "A" (menu ...
0
votes
1answer
38 views

CSS Single page nav menu with cycling content

So this might be two questions in one. I want to use css to allow my nav menu to determine the content of the page on hover. So when you hover over "contacts" it will display the contact form in the ...
0
votes
1answer
20 views

Creating JSPs with JspWriter?

I would like to generate JSP, depending on how many entries a user has written. For example, I'd like to display 3 entries per page, if the user types in more, two JSPs should be generated. I was ...
-3
votes
0answers
35 views

Can I use LESS to modify website visual look when a website is running? [closed]

I am learning the LESS CSS framework together with Twitter Bootstrap. You can find info about LESS at http://lesscss.org/ I have a hard time understanding why LESS is called dynamic. I am coming ...
0
votes
0answers
20 views

Misfiring event for Dynamic control

In my Asp.net Application, I created a ImageButton "Login" dynamically. Also added a attribute as "OnClick" to the "Login", during Page_load. Again am adding same attribute as "OnClick" to the ...
0
votes
2answers
33 views

Dynamically changing a Smarty variable via. PHP?

I have an outer template in Smarty (the background template), which displays the versioning number of a certain section of the project in the footer. The variable in question, {$NoVersion}, is a ...
0
votes
3answers
42 views

HTML including CSS using PHP

I am trying to build a one-page dynamic site and I've hit a roadblock. Since URLs like: index.php?page=Tutorials&Article=0 aren't really all that pretty, I decided to use .htaccess to rewrite ...
0
votes
1answer
46 views

Highcharts/Highstock dynamically add/remove multiple series

I'm a Java/PHP programmer with an unreasonable inability to grasp Javascript, so I need a hand with something that should be simple. Take the chart here: http://www.highcharts.com/stock/demo/compare ...
1
vote
1answer
35 views

Create dyanamic List Row layout Programatically

Thanks for reading my query. We are looking for a template based solution to list row where each list row might have different-2 field and their alignment which will be driven by server in the form ...
1
vote
1answer
33 views

Dynamic use of offsets excel

I got a problem about the use of offset functions in excel. Basically I got two col of consideration: First I need the calculation in col AD, so: AD = AA + AG_(+1). With AG_(+1) I mean the next coming ...
0
votes
1answer
21 views

What context should I use when sending an Intent to an activity in a separate DEX file?

I have an android activity located in a separate dex file that I want to launch from my android app. I get an exception after starting the intent. Didn't find class ...
1
vote
1answer
21 views

Orchard Module - How to return strongly typed Model rathen than dynamic from Driver

I created a ContactUs module that sends email when user click on Submit button. Everything works perfectly. However, I am curious if it is possible to return a strongly typed Model rather than ...
-8
votes
1answer
48 views

something wrong with replace string? [closed]

ok can anyone help me with this: <?php $remove = $_GET['hwid']; str_replace($_GET['hwid']."<br />","",$str); ?> It doesnt even delete the text... I Know i dont have it set to the html ...
0
votes
1answer
110 views

Using Angular + JQuery for a Dynamic Pinterest-Style Layout

I'm relatively new to Angular and have very little experience with JQuery, so whatever insight/advice you can give me would be greatly appreciated. My goal is to build a dynamic Pinterest-style ...
1
vote
1answer
65 views

Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool>

I'm Using Dynamic Linq library and there is Source code and basic docu and the Nuget version PM> Install-Package DynamicLINQ I'm trying to construct a where clause that involves Guids I have ...
1
vote
0answers
13 views

Using 'Ajax updated' dataset with crossfilter

I have a really large dataset (about 500 000 records...) about the CO2 emission on London that I want to display with maps and charts using crossfilter. For reasons of performance, I want to do ...
0
votes
1answer
65 views

Dynamically creating multiple textboxes depending on minimum number of characters in previous textbox/ javascript/asp

Hi I have a webform in which i need to add multiple textboxes dynamically depending on the entry in previous textbox.. Even if one character is entered in the previous textbox it should generate new ...
-1
votes
3answers
66 views

How do I make a div not display, if the browser window is at a certain width? [duplicate]

I want some images to not be displayed if the persons browser window is too small. Would I do this in CSS or Javasript, and if so, how?
0
votes
1answer
40 views

Dynamic Entity Framework query

currently I am building dynamic sql as follows: //Epressions are stored as String in database static Dictionary<string, string> TypeToExpression = new Dictionary<string, string>() { ...
0
votes
1answer
32 views

How to bind jquery droppable to a dynamically created element

I'm having a serious trouble with attaching droppable functionality to dynamically created elements.! I cannot bind droppable when the item is created since there is an ajax call going when the a ...
0
votes
0answers
19 views

Map Images into video and render it with the mapped images

I want to know how this foresthero is working: http://foresthero.org/ I know that these are dynamically rendered which takes sometime to create video and then giving users a link where they can view ...
0
votes
0answers
31 views

How to transpose rows into dynamic columns in Oracle 10

I have a table called TEST_HIST that gets updated daily with a PASS/FAIL status for each test in a battery of 1800 tests. The table is in Oracle 10. I need to produce the following report where each ...
1
vote
3answers
36 views

Postgres dynamic sql and list result

I used EXECUTE(for dynamic sql) and SETOF(result is returning as list), but it is the wrong :( create table test as select 1 id, 'safd' data1,'sagd' data2 union select 2 id, 'hdfg' data1,'sdsf' ...
2
votes
2answers
61 views

can you add properties on to functions in Dart?

Can you add properties on to functions in dart? I tried this: void main(){ fn(){ //DoSomething }; fn.id = 1; //Exception NoSuchMethod } Only to get a NoSuchMethod exception ...
1
vote
0answers
27 views

How to make the margin of an image dynamic

What i have is a long rectangular image like this http://www.openstudio.fr/jquery-virtual-tour/img/sculpteur.jpg and 3 buttons that will move the image to left, to right and pause.. just like what ...
-4
votes
1answer
30 views

PostgreSql dynamic function [closed]

I want to create a function in Postgres. I want to pass any query as argument and It must return me dynamic table(return table). How does it do?
2
votes
5answers
76 views

Why is it called dynamic binding?

We use virtual to achieve dynamic binding in Cpp i.e. to decide at runtime which function has to be called based on the actual object created rather than the reference or the pointer variable. class ...
0
votes
1answer
29 views

Fixing dynamic responsive navigation when there are more items than the container has width

So I'm currently working with some dynamic navigation. Just the basic HTML markup of a <ul><li> composition. My problem occurs when the user added too many items into this navigation and ...
1
vote
1answer
28 views

Dynamically create list of classes with inheritance and classmethods

I have a list of classes, and I'm trying to dynamically create another list of classes, such that each one has a classmethod that creates an instance of a child of a class from the original list. The ...
0
votes
0answers
22 views

dynamic Highcharts with integer input from textbox?

I need help I'm a JS, JQuery Beginner and I have to make a project for university. I have to make a Highchart Application which change after you had input an integer in a textbox and pressd the ...
0
votes
1answer
18 views

Generic Textchange Event

I am creating a android phonegap app, I want to create a generic textbox number validation for entering only numbers (0-9). No decimals(.). I can easily do it by passing different 10 different id to ...
0
votes
0answers
15 views

How does Google Charts dynamic map marker work?

I have to create dynamic markers for google maps. I found the charts API which will create dynamic markers with random colors and letters in it here. But my manager now wants it to be done on a ...
0
votes
3answers
75 views

Programaticlly added buttons click event

I am making a winform project where the user will enter the items to be sold. When the user gets in to sales screen , some buttons will be generated from the data user provided . I need to catch the ...
1
vote
1answer
65 views

c++ Dynamic 2d array not using default constructor

I got a problem that is beyond my knowledge. I'm working on a HGE project, but this is a c++ issue, not the HGE engine itself. The question: I want to create a 2D array with 3 different animations on ...
0
votes
1answer
23 views

AS3: Accessing a dynamicaly added child from another dynamicaly added child

So heres my question, I have a button on the stage that adds a MC called "fadeL" and "PDF1" Quick note: "fadeL" and "PDF1" are instances of "fadeMC" and "PDFwindow" heres the code for them: var ...
0
votes
0answers
39 views

SSIS 2005 Change header names in Excel Import Sheet

I have to import Excel files that have a header row into a data flow task. I am already getting the correct tab dynamically since they are not always named the same. However the problems I run into ...
0
votes
1answer
52 views

Dynamic Hyperlink in SQL Server Reporting Services SSRS 2005. Expression not resolving field?

SSRS 2005. Added a textbox> Properties> Navigation> jump to URL > Entered the URL, but can't seem to add dataset fields that resolve?? I tried inserting the Field via report builder dataset with no ...
-1
votes
2answers
19 views

Dynamic column alias based on column value

I want to name the column alias based on the column value in mysql. Is that possible? Something like this; select case when answer_type = 'RB' then answer_type as 'radio' else ...
0
votes
1answer
42 views

Android fragment layout finished inflating

I want to add some graphics to a layout programmatically. I want to position the graphics dynamically based on the position of other graphical elements in the xml layout file. The positions of the ...
1
vote
3answers
39 views

Java reading files from dynamic external jar

What i am trying to do and have been researching on how to do for many days is to have a mother jar that looks through a folder and loads all the jars in there dynamically ( Not really needing to know ...
1
vote
1answer
59 views

Dynamically show required textfield depending on dropdownlist value

Good day. My problem is I have a dropDownlist with three options: A, B, C. What I need to do is to show a textfield depending on what the user chose. Example: user chose A => it will show textfield ...
0
votes
2answers
40 views

Configurable code logic in C#

I have a xml data where nodes are present like this <segment> <country>US</country> <prop>Supplier</prop> </segment> The scenario is my business entity ...
0
votes
0answers
30 views

Appending an autocomplete selected value into a dynamic table

Here is the path of what is supposed to happen: 1) Search Autocomplete box for condition 2) Select a result {shows hidden div1 } 3) Click on Add button from div1 (Shows hidden div2) 4) Hidden div2 ...
0
votes
0answers
25 views

Dynamic Programming Pseudocode for Graph Coloring

I have been researching this topic and I have found little to no help on this matter. I was wondering if any of you fine folks could point me in the right direction (either by explanation or to some ...
0
votes
3answers
39 views

Finding number of elements of a dynamically allocated array

I have a dynamically allocated array called Deck, composed of Card objects which have two values, suit and number. I need to find the number of cards from my deck array, which I declared as so: ...
0
votes
2answers
50 views

Can I replace placeholder text in a rendered HTML page dynamically?

I wish I could think of a better way to word my question, but basically here is what I want to do: in an HTML file, I would like to fill the body with a specific string multiple times. For example: ...

1 2 3 4 5 192