| Thread | Last Post | Replies |
|
| 'System.Net.Sockets.TcpListener.TcpListener(int) is obsolete | 23 Mar 2008 19:19 GMT | 3 |
Setting a server to listen on 8080 for incoming connections. Written in VS2005 on a Multi-homed machine. I get the warning: Warning 1 'System.Net.Sockets.TcpListener.TcpListener(int)' is obsolete:
|
| Windows Mobile - C# Express possible? | 23 Mar 2008 16:40 GMT | 4 |
Windows Mobile - C# Express possible? John Kennedy's blog [URL: http://blogs.msdn.com/johnkenn/ ] seemed to hint that Windows Mobile software development was capable with C# Express.
|
| [ping] Marc Gravell. | 23 Mar 2008 11:25 GMT | 1 |
Happy easter. Just wanted to tell you that this tuesday I got a weird exception, stemming from NOT disposing a DataContext. So like Bill Maher we just added New Rules in our project. Always using
|
| response.redirect | 23 Mar 2008 10:02 GMT | 1 |
What are the ramifications of either of the possible values for the [optional] boolean endResponse parameter when calling Response.Redirect? If if false, is there some mysterious processing that continues on the
|
| Hidden Application Data | 22 Mar 2008 22:23 GMT | 5 |
I have a commercial application, that needs to store the user's id and password on the local machine, and we'd like to hide it from our users (to prevent frauds etc.). How can I store my application's data in a hidden way?
|
| Windows Service Application Restart | 22 Mar 2008 20:12 GMT | 8 |
How Can Windows Service Application Reatarts itself? Thanks.
|
| Trying to read from generic IList but getting "Option Strict On disallows late binding" restriction | 22 Mar 2008 15:02 GMT | 1 |
I'm wanting to iterate over a generic IList, but the code won't compile because the blue sqiggle line under: _DataRow("SecurityFunctionName") = _IList(i).SecurityFunctionName; sez "Option Strict On disallows late binding"
|
| Recommendations for tree control? | 22 Mar 2008 14:58 GMT | 2 |
Could anyone recommend me a decent tree control that can have extra columns of text data (like how Outlook Express shows the messages), preferably in C#. Many thanks --- Test
|
| Really simple question on 'msgbox' | 22 Mar 2008 14:34 GMT | 1 |
I'm a VB programmer, learning C#. How does one do the equivalent of a "msgbox" (from Visual Basic) in C#? Is there something like this: System.Forms.MessageBox("Hello World"); Thanks,
|
| Closures, Deferred Execution and IDisposable | 22 Mar 2008 14:26 GMT | 2 |
Can someone spot the problem here: public class Form1 : Form { public Form1()
|
| Convert IEnumerable to DataTable? | 22 Mar 2008 14:20 GMT | 3 |
Does anyone know how to convert an object of type IEnumerable to a DataTable? Thanks, Ron
|
| VS Icons | 22 Mar 2008 12:42 GMT | 1 |
Where can I find a list of the Icons VS2005 uses in the IDE? I'd like to print a copy for reference. Thanks Mike
|
| Implementing Linq IENumerable<T> without new() constraint | 22 Mar 2008 11:15 GMT | 1 |
I noticed that Linq-SQL DataContext ExecuteQuery method does not have new() constraint: IEnumerable<TResult> ExecuteQuery( command, ... ) IEnumerable must return object so it must create this object in some way.
|
| A simple class library question | 22 Mar 2008 11:03 GMT | 6 |
Well - at least I hope it is :-) Having spent some time developing my c# application, using Visual Studio 2005, I would now like to start re-factoring some of my code into a class library so that I can use it in other applications I will
|
| Managing TODOs in your source code | 22 Mar 2008 09:37 GMT | 8 |
In my code I have TODOs all over the solution/projects (like the following) //TODO: Refactor to Factory Pattern _service = new ServiceStub();
|