| Thread | Last Post | Replies |
|
| Codebehin from other project | 31 Aug 2006 14:41 GMT | 1 |
It's possible load the code behind from another project in C# 1.1 ? I want to compile my website in one dll per page, like does Asp.Net 2.0 Thanks
|
| Datagridview problem. | 31 Aug 2006 14:16 GMT | 1 |
I have a datagridview I call the CellValidating event and if the the cell does not validate I want to reset the cell to a default value. My code actually executes this statement: datagridview1.CurrentRow.Cells[Columnx].Value = defaultValue;
|
| C# and VB | 31 Aug 2006 14:07 GMT | 1 |
I already have an application writtern in VB6.0 which connects to a remote database and populates the data. In order to speed up the retrieval, I wrote a C# webservice which connects to the remote database and retrieves the data. This seems to be quiet faster than the
|
| Windows Application in C# | 31 Aug 2006 13:58 GMT | 1 |
I am a newbie in C# (windows apps). I want to create an application that: - when you launch the exe file the first form will appear (on the form there is a button) - when you click the button a new form appears (login form to sql db) with
|
| strongly typed datasets...to use or not to use | 31 Aug 2006 13:45 GMT | 1 |
I have been trying out using strongly typed datasets in VS 2005, and I have to say that I don't like them...they produce loads of auto-generated code, and I would much rather create a single class to deal with all my data access and write it all manually. Is there
|
| Program works on localhost but not on server | 31 Aug 2006 12:50 GMT | 1 |
My HelloWorld program works on localhost but not on server. I have 2 hello world applications, one in VS 2003 and other in VS 2005. Both programs is working on my computer but if I uppload it on server it doesn't work. Message is "Server Error in '/' Application.". My web
|
| How to monitor state of a Windows Service? | 31 Aug 2006 11:56 GMT | 1 |
Is there any way(event, callback...) to monitor state of a service other than checking it periodically? Thanks in advance.
|
| Custom control design time property problem. | 31 Aug 2006 11:55 GMT | 1 |
Hi, I'm creating a library of basic constol that I often use, and am just getting to the whole custom process, I've started by creating something simple by inheriting from a textbox, I have two custom properties that I'd like to be displayed at design time, one which is a bool ...
|
| comparing two tables | 31 Aug 2006 10:45 GMT | 5 |
I have two tables that are not link. But their content are interrelated. I want to find out what is in one table that is not in the other and vice-versa. how can archieve this in c# or within the database.
|
| public DataValue this[int column] indexing with int ??? | 31 Aug 2006 10:41 GMT | 3 |
Pardon my not knowing where to find this one... but try finding the meaning of "this" on the net or in reference books. I'm trying to follow this example from Apress book - Introduction to C# 2.0 (page 179) and it bothers me that I don't quite get something
|
| problem with accessrights when having a class in another class | 31 Aug 2006 09:40 GMT | 1 |
I access the class MyComparer in this way. steel_post.Sort(new MeltPracDataComposition.Composition.MyComparer()); You can see the class definition for MyComparer below. As you can see this class MyComparer in located withing class Composition
|
| NDoc Replacement | 31 Aug 2006 09:27 GMT | 10 |
I'm looking for a replacement to NDoc. to generate MSDN style HTML from xml documentation. NDoc just doesn't support 2.0 very well and some things (generics) at all. Thanks
|
| Checking what classes are being used in my project? | 31 Aug 2006 09:21 GMT | 1 |
I inherited a project that has more classes than what the project uses (i.e. Code generator). Is there any way (or utility) that'll tell me what classes (or files) aren't used? Thanks.
|
| How do I use CompareTo in my case | 31 Aug 2006 08:50 GMT | 2 |
I have a class lets call it Test with four fields. This Test class implement IComparable so CompareTo is therefore implemented in this Test class. One field in this Test class is an int called Order.
|
| Financial calculations! | 31 Aug 2006 08:28 GMT | 2 |
Does anyone know where i can find an examplem of how to perfom the most common finacial operations in C#? Many thanks in advanc jj
|