| Thread | Last Post | Replies |
|
| How to extract full type name from assembly qualified name | 12 Jun 2007 21:42 GMT | 11 |
Does anyone know how to extract the full type name ("namespace.type") from an assembly qualified name. Thanks.
|
| How to open XmlReader from string? | 12 Jun 2007 21:30 GMT | 7 |
I have string with XML, need to read it using XmlReader. I don't see any way to feed string variable in there. How it's done? Thanks!
|
| DataGridView with blank cells? | 12 Jun 2007 21:19 GMT | 3 |
I have a datagridview object on my form along with some other controls. When the application runs, the datagridview is populated with data from a database. Although the right number of records is displayed, all the cells in each record are blank. Any idea why? Thanks, Max.
|
| How to use List<T> with 2 dimensions (with the 2nd one variable)? | 12 Jun 2007 21:09 GMT | 8 |
Hi All, I need to create a 2-dimensional group of values, the first dimension having 8 rows, while the 2nd is variable. I was thinking of using List<T>, but MAYBE List<T> is not the way to go (I prefer Type-safe but it is not truly necessary). So if not List<T>, what do
|
| Going crazy trying to understand Web Services behaviour with static member fields, static classes and singleton classes. | 12 Jun 2007 19:31 GMT | 2 |
FirstClass members: - static int counter; - SingletonClass sc = SingletonClass.Instance; Moreovere FirstClass uses a static class named SecondClass with a static
|
| scope, lifetime, changing mindset from one user to many simultaneous users | 12 Jun 2007 19:04 GMT | 9 |
With a non-server app there is one instance of the program running and one user 'using' it at a time. With this scenario I'm pretty comfortable with variable scope and lifetime. With a server app there is one instance of the program running but several simultaneous clients ...
|
| days difference between 2 dates | 12 Jun 2007 18:30 GMT | 8 |
In VB we have DateDiff to calculate the days difference between 2 dates, I was wondering if we have something like that in C#? I want to calculate for example the days difference betwenn 19/06/2007
|
| Question about Iteration and forEach | 12 Jun 2007 18:18 GMT | 9 |
I am looping through an iteration and I would like to test the next item but if its not the one that I want how do I put it back so that when my foreach continues it is in the next iteration? Bill
|
| User objects in application settings? | 12 Jun 2007 18:08 GMT | 2 |
This seems like is should be straight forward but I'm just not getting it. I have a very simple class (see below) which I think should be XML serializable. I have this class defined in my simple form app's namespace. Now I want to add an instance of this class to my Application ...
|
| Multiline RichTextBox flashes as backspacing occurs | 12 Jun 2007 18:05 GMT | 3 |
I've asked about this kind of thing before but I'm still having problems with it. Below is a stripped down version of my code to do a backspace in a multiline RichTextBox. I know it still needs some work to make it work for all cases but my question is more basic so I think you ...
|
| Linq Over Dataset/SQL Server in terms of Performance, Concurrency | 12 Jun 2007 18:05 GMT | 4 |
Hi Experts, I am doing a prototype of providing data access (read, write & search) through Web Service. We observed that the data storing in SQL Server 2005, the memory size is always within 250MB. Our aim is to support ~50K
|
| .NET Error Provider | 12 Jun 2007 17:56 GMT | 2 |
Would someone please explain what is the .NET Error Provider, and where do I find documentation on it? I tried searching the Framework documentation but didn't find anything.
|
| Enterprise Library Logging Application Block Basics | 12 Jun 2007 17:52 GMT | 2 |
Hi Group, Can somebody tell me where I can find the internals of Logging application block 2.0/3.0. I need answers for the questions like:
|
| static class inheritance, generalized | 12 Jun 2007 17:51 GMT | 49 |
I'm trying to construct a compelling example of the need for a language feature, with full support for generics, to introduce all static members and nested classes of another type into the current name search scope. i.e. a very simple application would be
|
| c# lock | 12 Jun 2007 17:49 GMT | 2 |
I need to code so that only one thread can do a piece of work... other threads need not do the work if a thread is alredy doing the work. something like this..... if ( isAlreadyLocked )
|