| Thread | Last Post | Replies |
|
| gcnew but NO gcdelete | 30 Apr 2006 22:59 GMT | 2 |
I still have a bit of problem with this one since pointer management is such a critical task in C/C++ programming. I've read it, I understand it, but I gotta ask: There is no gcdelete function for objects created with gcnew. Simple set the handle to nullptr and the system ...
|
| Is there a limit of number of nodes for a TreeView? | 30 Apr 2006 15:55 GMT | 4 |
I am using TreeView control from .Net Framework 1.1. Everything works if the number of nodes is not too big. When the number reaches thousands and the tree is fully expeanded , some nodes(the nodes at the end) are missing.
|
| Regex question | 30 Apr 2006 13:23 GMT | 2 |
Having some trouble with a regex that I hope someone can help me with. The data I am processing looks as follows: 15 items per dataset. Most datasets are on only 1 line of text, however on occasion a few text fields are multi-line making the
|
| CSS | 30 Apr 2006 13:11 GMT | 7 |
Is there a news group for CSS? I can set the style for INPUT but I don't have a good way of cascading a style for all my <input type=button>. I have hundreds of them. INPUT
|
| Can't run DLL | 30 Apr 2006 07:04 GMT | 2 |
I created a DLL, reference it in namespace and didn't work so I tried a very basic one and same error. I've done this before on another machine and it was pretty plug n play. Don't know what's wrong with this win2003 server.
|
| HTTPS Connectivity in C# | 30 Apr 2006 04:22 GMT | 2 |
Not sure if this is the correct forum to ask... I am looking for C# library for HTTPS Connectivity. Or is there anything I can do to tweak WebRequest to make it work with HTTPS, like for example setting some SSL Transport Provider...
|
| Settings independent of assembly version | 29 Apr 2006 18:21 GMT | 3 |
is there a way to save settings independent of the assembly version? .NET always stores the file user.config below a directory that has the name of the assembly version. When the version of an application changes, the file is written to a new directory and read from there.
|
| Class Constructors | 29 Apr 2006 14:11 GMT | 8 |
I have a class which defines multiple overloaded constructors. Within the class methods is there a elegant way to determine which constructor was used to instantiate the class (without setting flags in the constructor)?
|
| Windows Version | 29 Apr 2006 06:06 GMT | 1 |
Well, I need to know the version of the windows where my application will be installed. I think I'll need an api, anyway, I'll appreciate your help, tnks.
 Signature __________________
|
| Embedded apps resizing in 2.0 | 28 Apr 2006 23:02 GMT | 1 |
I have a no-touch application which I created in 1.1. It is embedded within IE, not a stand-alone window. I'm migrating it to 2.0 and one thing (which is a major problem) is that the <object> tag doesn't appear to resize within the browser frame any more. I tested the same code ...
|
| ByRef | 28 Apr 2006 21:06 GMT | 5 |
How do I pass a variable ByRef in C#?
 Signature Arne Garvander Certified Geek
|
| How to recognize a JPEG or a GIF image when the file has no extension? | 28 Apr 2006 20:05 GMT | 1 |
I download images which have no extension, with a System.Net.WebClient. I would like to save them with a different name and with the extension .jpg if they really are of JPEG type. Because sometimes I could receive GIF images, and I would like to do the same.
|
| How to recover from a WSAECONNRESET (10054) | 28 Apr 2006 19:58 GMT | 2 |
I am writing a .NET 2.0 client application uses sockets to communicate with a firmware on an instrument. The client needs to be able to recover from a lost connection to the instrument. While trying to send data to the instrument, after a disconnect/reconnect the socket throws
|
| UDP to Client | 28 Apr 2006 19:08 GMT | 1 |
Using VB.Net. Wanting to send a UDP message from a server to a client. The client uses a broadband connection from Comcast Cable. The computer has two IP addresses, one external and one internal. Which IP
|
| NetworkStream/SslStream EndWrite problem. | 28 Apr 2006 17:26 GMT | 1 |
I'm writing an async socket server using Networkstream and SslStream. Using the Socket class, the EndSend method returns the bytes writed and you can loop until all bytes are sended. But if you using any stream (Network or Ssl) the EndWrite method doesn't return nothing.
|