1
vote
2answers
26 views
Dynamic creation of ASP.NET Form Elements
I'm trying to build a form which generates itself as it is used. I have created a really simplistic example, loosely related to what I'm trying to do below, but which demonstrates …
2
votes
1answer
30 views
dns for dynamic IP
Hello.
I'd like to know the best solutions to get a public static dns or IP adress to access a computer on a routed network (for example to access from the internet a PC in my hom …
0
votes
1answer
17 views
Dynamically implement interface in Groovy using invokeMethod
Groovy offers some really neat language features for dealing with and implementing Java interfaces, but I seem kind of stuck.
I want to dynamically implement an Interface on a Gro …
2
votes
2answers
69 views
caching trouble: dynamic css files
I have some css files that need to be generated dynamically (why is complicated, but it's necessary). The easy solution is to change the files to aspx files, and use <%= %> tag …
0
votes
2answers
27 views
How to generate a graphic on the fly with cherrypy
I am developing a small web application using cherrypy and I would like to generate some graphs from the data stored in a database. The web pages with tables are easy and I plan t …
0
votes
7answers
67 views
Question about reading properties of a class at run time in c# (.NET 2.0)?
Let's say I have a class that has 3 properties. I don't know which property I want to read until runtime. Is there a way to do this without a switch/if-else statement?
If a DataTa …
0
votes
7answers
60 views
Dynamic Property of JavaScript object?
I am wondering if this is possible in JavaScript, I want to have an Object which could contain dynamic properties.
Give an example:
function MyObject()
{
}
var myobj = new MyO …
0
votes
4answers
40 views
Dynamically Change HTML DOM event
Hi guys,
I am trying to dynamically change an element's onClick event and I have something like the following:
for (var i = 1; i < 5; i++)
{
getElementById('element' + i). …
0
votes
1answer
23 views
dynamic column binding in Xaml
This is a follow up question from an earlier post (here).
I have some 'header' information stored as:
Dictionary<string,string> - where the first string represents the field …
2
votes
2answers
159 views
How to catch exception thrown from library in GCC C++?
When i use dlopen to dynamically load a library it seems i can not catch exceptions thrown by that library. As i understand it it's because dlopen is a C function.
Is there anothe …
0
votes
1answer
41 views
dynamic database driven menus in VB.Net
hi all, I'm trying to construct a database driven VB.Net app that pulls a list of registered accounts from a database and displays the usernames of throes accounts in menu, so the …
0
votes
5answers
93 views
Is it possible to choose a C++ generic type parameter at runtime?
Is there a way to choose the generic type of a class at runtime or is this a compile-time thing in C++?
What I want to do is something like this (pseudocode):
Generictype type;
i …
0
votes
1answer
15 views
Dynamic Scoping - Deep Binding vs Shallow Binding
I've been trying to get my head around shallow binding and deep binding, wikipedia doesn't do a good job of explaining it properly. Say I have the following code, what would the ou …
0
votes
1answer
33 views
Populating a DataGridView on-the-fly (VB.NET)
Hi all,
I have a DataGridView which reads data from a custom (CSLA) list object. The dataset might have 100,000 records, and obviously I don't want to show them all at once becaus …
0
votes
1answer
22 views
Dynamic textbox inside gridview tab key press
Hi all,
We are using dynamic text box inside the gridview. When tab key pressed on each textbox inside the grid we need to do some calculation using total value from the database …
