Dynamic is a widely used term that, in general, describes a decision made by the program at run-time rather than at compile time.
0
votes
0answers
7 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 ...
0
votes
2answers
9 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' ...
1
vote
1answer
18 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
24 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
23 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
66 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
24 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
22 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
9 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
15 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
7 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
66 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
58 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
22 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
14 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 ...