| Thread | Last Post | Replies |
|
| User control displaying class property implementing IList interfac | 31 Mar 2006 10:48 GMT | 1 |
I have a user control that has a property which is a class implementing IList: public partial class MultiPanelControl : UserControl { protected MultiPanelList _panels = new MultiPanelList();
|
| Books | 31 Mar 2006 10:28 GMT | 3 |
I'm looking for book suggestions for programming .net applications in C#. I'm using VS C# Express, and will be accessing a database (SQL Server 2005 Express) as a client-server. Thanks!
|
| question about Output message error 401 trying to publishing my ap | 31 Mar 2006 10:11 GMT | 1 |
When I try to publish my app I am now getting the 401 error message. It used to work. Then someone changed something on the server. We are now trying to change stuff back on the server. I don't know what to do to fix the error message below - when I try to publish my app from ...
|
| SortedList Issue | 31 Mar 2006 08:22 GMT | 2 |
Hello I'm having some problems with a a sortedList in C#. My set is as follows: I have a sortedList as a class variable (DataList) I inisiate it in my constructor with DataList = new SortedList().
|
| Import Namespace | 31 Mar 2006 07:36 GMT | 1 |
In vb.net its possible import a namespace into a project so you don't need to add it to the top of every class. Is there a way to do this in c# on a project level?
|
| need superfast binarysearch, with superfast icomparer | 31 Mar 2006 07:35 GMT | 11 |
my motivation is as follows: i have to binarysearch several million times an long[] that is several million items big. this costs time, although i use Array.Binarysearch<long>. so i try to keep the Compare-method as lean
|
| copye char[] to byte[] | 31 Mar 2006 07:16 GMT | 6 |
How to copy an char[] to a byte[] , where the char[] holds unicode characters ?
|
| inheritance and static | 31 Mar 2006 07:15 GMT | 10 |
Consider following example: class A { public static Method()
|
| Escape Character \e does not work | 31 Mar 2006 07:12 GMT | 15 |
I am having a problem with the "escape" character \e. This code is in my Windows form KeyPress event. The compiler gives me "unrecognized escape sequence" even though this is documented in MSDN. Any idea if this is a bug? if (e.KeyChar == '\e')
|
| Send ctrl-c | 31 Mar 2006 06:38 GMT | 3 |
How do you send Ctrl-C to a standard input stream? Just sending 03 does not work.
 Signature William Stacey [MVP]
|
| c# direct x book | 31 Mar 2006 03:19 GMT | 1 |
Any c# direct x book? I can't find any, please recommend thanks from Peter
|
| SQL Licencing Headaches. | 31 Mar 2006 00:30 GMT | 11 |
Please explain to me. Im writing an app using visual studio professional and sql server express (although I also have sql server with one client licence.) My app uses c# , windows forms, and an sql database.
|
| c# Gui Freeze when waiting for Data | 31 Mar 2006 00:26 GMT | 5 |
hi I am writing a C# windows program which will get datatable from database through ODBC connection then I show the the datatable on DataGridView. The problem is that before the datatable get returned, the GUI freezes. I can't move it
|
| fuzzy logic with .net | 30 Mar 2006 23:26 GMT | 1 |
Does anybody knows if .net has a library of classes to work with fuzzy logic? Thank you
|
| Updating A DataSet Through A Web Service | 30 Mar 2006 23:05 GMT | 7 |
My experience with databases using C# has been pretty limited thus far. Mostly I just use a SELECT statement to populate a DataSet, which is just read-only (mostly for display on a web page), or maybe go so far as to build an UPDATE or INSERT query with a couple parameters and ...
|