| Thread | Last Post | Replies |
|
| Remoting timeout not working | 19 Mar 2008 15:24 GMT | 1 |
When the remoting server is not available (it is unreachanble/ closed/ non-existent), making a call on the remoted object takes 45 seconds, and this timeout value cannot be changed. MSDN says this problem is fixed by setting the channel timeout property, but
|
| about the Uri relative path | 19 Mar 2008 15:13 GMT | 2 |
hi, i just want to know when i new a Uri instance using the UriKind.Relative para in construtor, where is the root path, for example, a local file Uri u=new Uri("a.txt",UriKind.Relative); then where is it? I thought it would be in the "object\debug" directory
|
| Using LINQ to see if Item already exists in listview | 19 Mar 2008 14:28 GMT | 7 |
Im trying to use c# and linq to simplfy searching through a listview but cannot get it to work can anyone help? here is what i got so far which doesnt work. var qry = from L in listviewname.items.all
|
| Web Service Dataset to a Internal SQL Server | 19 Mar 2008 14:02 GMT | 2 |
I have a web service that pass me a DataSet, I get all data correctly, I can even load it on a DataGridView, buyt I want to pass tha dataset to a Internal SQL Server, exact data structure , with no modification. What is the best wat you pass the Dataset to a table on the Internal ...
|
| Working an enum | 19 Mar 2008 08:42 GMT | 3 |
I've create a class Clock for entering handling directions. It has twelve values, 0 through 11, and methods for jumping back and fort in time.
|
| Stringbuilder class | 19 Mar 2008 08:39 GMT | 2 |
If StringBuilder has the ability to Insert and Remove then why not EndsWith and StartsWith? Hell, why not even something like Substring and Split which would return strings(or even stringbuilders) To me this class seems to be the most useless class?
|
| Call external web service | 19 Mar 2008 07:49 GMT | 6 |
I am working on a C# program and I need to invoke a method on an external web service. I have done many such method invocations from .NET web services where I am able to add the web reference to my project, but for this all I have is a WSDL and the URL for the external service.
|
| deleting multiple rows in a datagridview .net | 19 Mar 2008 07:03 GMT | 6 |
How to let user delete multi rows from the BindingSource while the SelectionMode Property set to RowHeaderSelect I have in my program datagridview bound it to sql table Throw Bindingsource
|
| Confused about the lamda expression | 19 Mar 2008 03:45 GMT | 7 |
I want to get my hands dirty with Linq, so I watched a few videos from www.asp.net, and then turned to http://msdn2.microsoft.com/en-us/library/bb397687.aspx for some introduction about the new lamda feature of C#.
|
| Best way to display real-time data in place? | 19 Mar 2008 01:49 GMT | 3 |
I have an application where I wish to display and update some text in place, eg: Status1 = val123 Status2 = val345
|
| Adding leading zeros to NumericUpDown Control | 19 Mar 2008 00:52 GMT | 7 |
I am trying to force a numericupdown control to display leading zeros. The maximum is less than 100, so the displayed value will always be a two digit number or less. So I have overridden the OnValueChanged Event with the following code;
|
| Refering a static class | 19 Mar 2008 00:45 GMT | 5 |
I've placed all my constants in a class called Donkey (since it's carrying all the stuff). When i'm creating an array, i get the info for the size from there.
|
| serial port - again | 19 Mar 2008 00:07 GMT | 6 |
I need to write an application which two computers can transmit data via serial port (COM1). So I wrote two simple test program write to comm and read from comm. However, when I test these two programs, I could not read any data from COM1. Data seems to send Ok but the
|
| Assigning properties Values from one object to other | 18 Mar 2008 23:46 GMT | 5 |
I want to assign the values of properties of object A to objectB They both belong to different classes but implement on common interface. I just want to assign the properties defined in the interface.
|
| Simple example Please | 18 Mar 2008 23:34 GMT | 1 |
Can anyone point me to the code for a simple example of 2 classes and / or forms referencing each other using Fields or Get/set properties. I want both to be able to acces each others Properties and Functions. I want the correct way, so I learn the correct way.
|