| Thread | Last Post | Replies |
|
| DataAdapter question | 18 Nov 2005 19:28 GMT | 5 |
Is it OK to ask a DataAdapter question in here as it is a bit more ADO.NET
 Signature Regards Ian
|
| WebForm over Network Share | 18 Nov 2005 19:16 GMT | 2 |
I have been desperately trying to get this to work. I create a C# Web App on the localhost (the only place i'm allowed to put it). Put an arbitrary button or something in, compile it, run it... everything works fine.
|
| Event in interface | 18 Nov 2005 18:54 GMT | 4 |
Anyone have an example of defining a custom event (i.e custom delegate) in an interface?
 Signature Anthony Yott
|
| Replace | 18 Nov 2005 18:51 GMT | 3 |
What has replaced ActiveX control running as embedded objects in IE? Thanks, Yama
|
| Datagrid get currentcel content | 18 Nov 2005 18:28 GMT | 1 |
I've been looking on te intenet for a wile now (2 hours) and i just can't find how to get the data of the current selected sell. plz help me kind regards Maarten
|
| FxCop, Properties and arrays | 18 Nov 2005 18:07 GMT | 7 |
If I create an array, e.g. private int[] x, inside a parent class whose elements can be accessed by a child class - what is the recommended way of doing this? When I create a property for the array FxCop complains that properties should not return arrays. If I want to make the ...
|
| Settings.settings | 18 Nov 2005 17:17 GMT | 5 |
A question on the verge of being OT, but here goes: In my c# project in VS2005, I have a Properties folder in the Solution Explorer and within that a Settings.settings file. At first glance i decided this was a great place to store some simple configuration
|
| Syntax to implement interfaces? | 18 Nov 2005 17:09 GMT | 2 |
I'm trying to extend the System.IAsynchResult so I created a class as follows: public class MyAsynchResult : System.IAsyncResult { ....
|
| Copy Constructor to load List<T> | 18 Nov 2005 16:57 GMT | 1 |
In VS2003 I have been using an ArrayList loading it with a copy constructor and it seems to work fine. {I am acutally loading a lot of constants first, not one a shown} public ArrayList al;
|
| XML Documentation to help file with .NET 2.0? | 18 Nov 2005 16:39 GMT | 1 |
I've been using XML Documentation in my class libraries since I discovered this, and I have been using NDoc to produce help files from the xml files so that the documentation is available outside of Visual Studio as well.
|
| how many threads are used by one Threading.Timer? | 18 Nov 2005 16:30 GMT | 3 |
I like to know how many threads are used by a Threading.Timer object. When I create a Threading.Timer object calling a short running method every 5 seconds I expected to have one additional ThreadPool thread. And that is exactly what MS VIsual Studio shows.
|
| DataGrid and Arrows | 18 Nov 2005 16:28 GMT | 1 |
I have DataGrid and i want to use the arrows to navigate up and down between the lines. i also want that each row i'm in, will be marked (as in DataGrid.Select(row_number)). When my form is loaded, my focus is on a textbox i have, and what i want to do is that if i press the ...
|
| ToolTip problem | 18 Nov 2005 16:25 GMT | 2 |
Good day to everyone, I am trying to make a ToolTip for a couple of TextBoxes. What I do is: create a new ToolTip and make it a Balloon: ToolTip myToolTip = new ToolTip();
|
| copying an arraylist of objects into an array of the objects themselves. | 18 Nov 2005 16:19 GMT | 5 |
If this makes sense, I would like to convert an arraylist of objects returned from foo() into an array of the objects themselves per; private Customer[] customers; private int idx = 0;
|
| how to serialize a static class | 18 Nov 2005 16:07 GMT | 2 |
I try to make an application, where I have to store some user settings. Since these settings are global for the applciation and I don't want to instatiate it, the best way would be to store them in a static class, or in a class with only static members. However I don't know how ...
|