| Thread | Last Post | Replies |
|
| switch and nullable type in C# 2.0 | 15 Sep 2005 18:12 GMT | 27 |
VS 2005 beta 2 successfully compiles the following: using System; using System.Collections.Generic; using System.Text;
|
| Return from and Exception Question | 15 Sep 2005 18:09 GMT | 7 |
I know there is no On Error or the like in C#. But I am not sure how to make this code work when the file it tries to copy is in use, not there, etc. Here is what I have tried and when the exception is thrown the listbox updates, but the program just dies. I want it to go to the
|
| How to Cancel a "non cancellable" Event | 15 Sep 2005 17:54 GMT | 5 |
I'm using a 3rd party component in an ASP.NET 1.1 Web application. The component has a .Click event that can be fired from the client, with an associated event procedure in the code-behind module. The logic in the click event procedure may, under some conditions, need to
|
| WebRequest - Directory Listing | 15 Sep 2005 17:00 GMT | 2 |
I'm able to get the listing of (or "Index of") a directory on a website/webserver using HttpWebRequest and HttpWebResponse, but it comes back as an HTML page, similar to what IE or Mozilla/Firefox/Netscape would show.
|
| Twain Implementation | 15 Sep 2005 16:30 GMT | 1 |
Hi, I would like to know if there is any implementation to Twain Drivers. I found something usefull on code project but seems that the developer doesn't trust in his own code, so.... I bet you can imagine.... Well, any hints and sugestions related to this topic can be post here I ...
|
| How to handle Component error in .NET...? | 15 Sep 2005 16:28 GMT | 1 |
I have placed an ActiveX component in my WinForms application. It was developed in VB. But i've added in my C# application. (1) How i can handle the component errors thru custom error handling...? Maheshkumar.R
|
| Trapping Windows Messages from other applications | 15 Sep 2005 16:19 GMT | 2 |
Okay I'm trying to write an application to monitor a running process. Right now I have a front end which allows the user to pick the programs they want to monitor. The interval between how often I information for this process, things like CPU usage, peak memory, virtual memory, ...
|
| DataGridView Column Headers | 15 Sep 2005 15:54 GMT | 2 |
How can I set a bound DataGridView control to use a dataset table's column captions, instead of column names? I'm working with a DataGridView control, which I have bound to a table in a dataset. The dataset is created at run time, so I don't know column headers
|
| EAI, WSDL, SOAP or some thing else? | 15 Sep 2005 15:48 GMT | 4 |
My issue is that I'm working on a project that should play the role of an adaptor between internal and external application. Each change done in the internal application should be known by the external one. I know thank is so heavy for performance but should exist a solution.
|
| Looking for advice on this rethrow of exception | 15 Sep 2005 15:39 GMT | 6 |
I'm just looking for some other opinions on this. I have a control that does employee lookups, auto complete of the name etc. Let say that this control is:
|
| dataview find | 15 Sep 2005 15:35 GMT | 1 |
I have a datatable and am searching the column called File for a particular value called xFile (a number). DataView dv = new DataView(tCat, "", "File", DataViewRowState.CurrentRows); int xrow = dv.Find(xFile);
|
| Checking if string | 15 Sep 2005 15:25 GMT | 2 |
Hi, I'm wondering how you can check a string that supposed to represent a numeric value. e.g. in old VB6 there was a method IsNumeric(). Is there an equivelant in C#?
|
| how compare two generic object | 15 Sep 2005 15:05 GMT | 2 |
How can I compare "if argument"? example: if (leftExpression==RightExpression) After parsing I know the type of RightExpression. I suppone that if RightExpression is wrap into " " is a String.
|
| Security Exception? | 15 Sep 2005 14:42 GMT | 3 |
I have developed an app in C# that I'm trying to deploy in an intranet. I would like the app to be installed in a server and to be run from a shortcut from a client machine. The problem is that while from the .NET wizard I set the security for
|
| Big table of constants initialising | 15 Sep 2005 14:02 GMT | 1 |
I am novice in C#. I did write on C++ before. In my current program i need to use big constant table. Each string is a some struct what contain following fields: MyEnum f1;
|