0
votes
2answers
59 views
C++ 2D dynamic array crash
Hi I'm having some problem with 2D dynamic array.
int main()
{
double **M;
int M_dimension;
int i;
M_dimension = 10;
M = new double *[M_dimension];
for (i=0;i<M_dimension;i++)
…
0
votes
1answer
22 views
Jquery dynamic rows with form
I am trying to change 'inputs' in this demo to 'selects'. The demo works fine, which is at:
http://devblog.jasonhuck.com/assets/infiniteformrows.html
The problem with modified is is everytime you …
0
votes
2answers
43 views
Action<T> to call a method based on a string value
Is there a way to use Action to call a method based on a string value that contains the name of that method?
1
vote
5answers
153 views
C++ dynamic allocated array
Hi, I'm doing some assignment and got stuck at one point here.
I am trying to write an list_add() function. The first functionality of it is to add values to the array. The second functionality for it …
0
votes
3answers
56 views
Django Dynamic Forms Save
I am using James Bennetts code (link text) to create a dynamic form. Everything is working ok but I have now come to the point where I need to save the data and have become a bit stuck. I know I can …
0
votes
1answer
15 views
data in dynamic textbox
Hi, I am new to .Net
I created textboxed dynamically, But when i clicked on the button, i loss before created data in the textbox. How can i maintain data in the dynamic textbox.
Thanks in advance..
0
votes
4answers
62 views
lua call function from a string with function name
Is it possible in lua to execute a function from a string representing its name?
i.e: I have the string x = "foo", is it possible to do x() ?
If yes what is the syntax ?
0
votes
1answer
31 views
Creating a Dynamic Linq filter over List<T>
Hi. Ok, I asked this question before, but deleted it as the way I went about describing my problem was wrong.
Firstly, let me state that Im creating a .NET3.5 Winforms app using C# and Plinqo …
1
vote
1answer
15 views
LINQ and dynamic queries with paging and without LINQ2SQL
I have tried some ways to use LINQ dynamic queries - LINQKit and
LINQ Dynamic Query Library. I do not like the second because it some way kills the LINQ idea - to be able to check queries at compile …
1
vote
8answers
170 views
C#, dynamic return type
Hi all,
What I need is a method that can return a type (no object, cause no casting allowed) following a condition. Here is an example:
??? right (string fullStr, int endPosition)
{
string tmpStr = …
2
votes
3answers
195 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 another way to dynamically …
0
votes
1answer
79 views
Dynamic Allocation of an Array of Pointers to Objects
Hi all,
This question is in C++.
I am trying to dynamically allocate an array of pointers to objects.
I know I can use a vector container but the point of the exercise is not to...
Here is the code:
…
1
vote
1answer
44 views
Using HttpWebRequest with dynamic URI causes “parameter is not valid” in Image.FromStream
I'm trying to obtain an image to encode to a WordML document. The original version of this function used files, but I needed to change it to get images created on the fly with an aspx page. I've …
2
votes
3answers
97 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 <%= %> tags as needed to …
1
vote
4answers
85 views
Is there a high level language with an interpreter, dynamic compiler and static compiler(e.g. like the c++ compiler) along with a multimedia library?
The interpreter and dynamic compiler would be for testing/prototyping and when im done testing i use the static compiler.
