| Thread | Last Post | Replies |
|
| Test connection with internet | 18 Jul 2005 12:51 GMT | 1 |
HI... I'm making a program to test f my connection to the internet was alive... I think of make a webrequest and ersponse, but even if my connection is down doesn't I get a response??? The error 404...
|
| IIS and Host Headers | 18 Jul 2005 12:51 GMT | 2 |
Hello Group: How would I go about connecting to an IIS server and getting a list of the host headers for a certain web-site? I am not sure where to begin or how to go about doing this.
|
| Why can't C# use System.Void type? | 18 Jul 2005 12:03 GMT | 2 |
With generics in .NET 2, there are certain scenarios in which using System.Void would be useful: TReturnType MyFunction<TReturnType>() {
|
| Best way to clone an ArrayList? | 18 Jul 2005 12:02 GMT | 6 |
I was just looking for some opinions on the best way to clone an ArrayList object. For example, if class A contains an ArrayList, what would be the best way to make a copy of it for class B (but not using the class constructors):
|
| HasExited returns wrong values ... | 18 Jul 2005 11:10 GMT | 5 |
I have a problem with HasExited process property. The code is: ... if ( some_process.HasExited == false )
|
| Basic types: objects or not? | 18 Jul 2005 11:07 GMT | 14 |
Are basic types (int, long, ...) objetcs or not? I read that in C# all are objects including basic types, derived from Object class. Then in msdn documentation says that boxing converts basic types in objects. But if they are objects why it´s need this conversion? Aren´t
|
| How to convert string (#&dddd) to unicode character | 18 Jul 2005 10:55 GMT | 1 |
I read data from a website and encoding in UTF8. So the result I had like this: và resumes trực tiế How can convert the "ự" (and these string like this) to Unicode
|
| convert SqlBinary to Byte[] | 18 Jul 2005 10:52 GMT | 3 |
I can easily get my byte array into the SqlBinary Sql servr field. getting it out again is more difficult. SqlBinary myBin = myBinaryObject; // object from SQL server field. byte[] b= myBin ;
|
| connecting using SSL with C# | 18 Jul 2005 10:46 GMT | 4 |
Hi all.... I used IPEndPoint and Socket class of System.Net namespace in order to send a request to a webpage. I opened 443 port in order to establish a HTTPS connection, but it didn't seem to work.
|
| Array | 18 Jul 2005 10:28 GMT | 3 |
Does anybody know how can I change length of existing array. In Delphi I used dynamic array and procedure SetLength. Is any similar procedure in C#. For instance, I have array with 100 elements, and I need change its lenght to 20 without lost data in it.
|
| New to C# | 18 Jul 2005 10:07 GMT | 3 |
I was wandering if anyone can help me find information [ websites ,etc ] , comparing C # to Java ++. I have been tring them both out and would like to know were they disagree on format or structure. Also why one is better over the other is used.
|
| Date format causing great problems! | 18 Jul 2005 09:09 GMT | 9 |
I have an application which imports fields from external source where date format of one the collumns is English (United States): M/d/yyyy. So July 1, 2005 equals to: 7/1/05 I am using this date everywhere in the application.
|
| How to marshal to a pointer to a pointer | 18 Jul 2005 08:56 GMT | 1 |
I need to pass a pointer to pointer in a C++ method that has a float** parameter. How do I do this? Thanks for your help Johann
|
| How to pass "this" as a parameter? | 18 Jul 2005 06:33 GMT | 6 |
I'd like to make the following a generic method that all my forms can call to validate all the fields on the form. So how do I pass the form object that is represented as "this" in the following code, and how do I retrieve the list of all controls and child controls on that form ...
|
| Abnormal Thread Termination | 18 Jul 2005 05:59 GMT | 2 |
I have a problem in my multithreaded application. The problem is reproducible very rarely, only once in 6000 similar execution (through same code path). Problem: One of multiple threads gets abnormally terminated. It does not goes through the try-catch-finally sequence. The mehtod ...
|