Skip to main content
Filter by
Sorted by
Tagged with
3 votes
6 answers
44k views

I have a C# application where i want to implement a logic for a programm which will open the word document and go to a certain place in the page and create a Table and put values in that. Can any one ...
user avatar
7 votes
4 answers
4k views

A "static" query is one that remains the same at all times. For example, the "Tags" button on Stackoverflow, or the "7 days" button on Digg. In short, they always map to a specific database query, so ...
Emrah Diril's user avatar
  • 1,765
1 vote
3 answers
2k views

I'm binding a datatable to a gridview control, and when I format each column I need to format the data based on whether that column has a particular custom attribute. In this case, a column can ...
Caveatrob's user avatar
  • 13.4k
2 votes
6 answers
14k views

I have 15 stored procedures that return data from a common table and then join that table with a specific table to retrieve inventory. Example: Common: tblCommon Specific: tblSpecific Is there way I ...
user avatar
5 votes
3 answers
790 views

In C#4.0 we're going to get dynamic types, or objects whose "static type is dynamic", according to Anders. This will allow any method invocation resolution to happen at runtime rather than compile ...
Arne Claassen's user avatar
20 votes
8 answers
21k views

In C++ I'd like to do something like: int n = get_int_from_user(); char* matrix = new char[n][n]; matrix[0][0] = 'c'; //... matrix[n][n] = 'a'; delete [][] matrix; but of course this doesn't work. ...
Tristan Havelick's user avatar
1 vote
1 answer
1k views

We have set up a system where notifications get sent to a user with the following From address format: user-{0}@aol.com (replace {0} with an ID) This way we can track what user we sent the message ...
Kevin's user avatar
  • 13.1k
0 votes
2 answers
4k views

I've been working on a SharePoint project and I have gone the route of loading User Controls through a custom web part. I have several web controls where I need to dynamically generate hyperlinks (in ...
Ryan Smith's user avatar
  • 8,364
5 votes
6 answers
7k views

Is there any way to add a field to a class at runtime ( a field that didn't exist before ) ? Something like this snippet : Myobject *ob; // create an object ob->addField("newField",44); // we add ...
Vhaerun's user avatar
  • 13.4k
15 votes
9 answers
69k views

I'm having a problem dynamically adding columns to a GridView. I need to change the layout -- i.e. the included columns -- based on the value in a DropDownList. When the user changes the selection ...
Howard Pinsley's user avatar
2 votes
4 answers
1k views

Usercontrol with button - When uc is added dynamically to another page I loose the button handler. ie: I have 1 usercontrol with 1 button - the button has an event handler in the code behind. When i ...
schmoopy's user avatar
  • 6,699
16 votes
3 answers
29k views

I am seeing following exception when I try to use dynamic proxy com.intellij.rt.execution.application.AppMain DynamicProxy.DynamicProxy Exception in thread "main" java.lang.IllegalArgumentException:...
user avatar
7 votes
3 answers
7k views

I like the flexibility of Dynamic SQL and I like the security + improved performance of Prepared Statements. So what I really want is Dynamic Prepared Statements, which is troublesome to make because ...
learningtech's user avatar
  • 33.9k
15 votes
9 answers
13k views

Problem with dynamic controls Hello all, I'm wanting to create some dynamic controls, and have them persist their viewstate across page loads. Easy enough, right? All I have to do is re-create the ...
user27293's user avatar
  • 163
75 votes
3 answers
154k views

How do you build and use dynamic sql in a MySQL stored procedure?
Brian Boatright's user avatar
1 vote
6 answers
2k views

I have a very large table (8gb) with information about files, and i need to run a report against it that would would look something like this: (select * from fs_walk_scan where file_path like '\\\\...
Zenshai's user avatar
  • 10.8k
0 votes
3 answers
2k views

I know this is a dumb question. For some reason my mind is blank on this. Any ideas? Sorry should have been more clear. Using a HtmlGenericControl to pull in link description as well as image. ...
mikedopp's user avatar
  • 198
94 votes
4 answers
49k views

I know how to create a SEL at compile time using @selector(MyMethodName:) but what I want to do is create a selector dynamically from an NSString. Is this even possible? What I can do: SEL selector =...
craigb's user avatar
  • 16.9k
7 votes
5 answers
6k views

I'm planning to create a data structure optimized to hold assembly code. That way I can be totally responsible for the optimization algorithms that will be working on this structure. If I can compile ...

1
542 543 544 545
546