| Thread | Last Post | Replies |
|
| Possible bug with SerialPort Parity.None and/or ParityReplace | 04 Apr 2006 18:07 GMT | 5 |
I am developing some firmware that needs to send binary data to a .NET app via rs232. I have created a test .NET app that uses the SerialPort class to read the data, however it is erroneously doing a replacement on the value 0xFF to be 0x3F (the default ParityReplace character). ...
|
| Sending an email using System.Net.Mail or System.Web.Mail | 04 Apr 2006 16:00 GMT | 5 |
I am attempting to send an email from a C# app and get the following error - [System.Web.HttpException] = {"The server rejected one or more recipient addresses. The server response was: 554 Relay rejected for
|
| read images from an ImageListStreamer | 04 Apr 2006 15:15 GMT | 1 |
Here's a simple question, how can i read the images from an ImageListStreamer object in the same way i read a resource file (.resources) containing images ? For example, assuming i have a .resources file which contains some
|
| text contents to string[] | 04 Apr 2006 12:56 GMT | 3 |
BOF BD|0001|20060403001|1 BO|1|BSE|0001|B|06/B-04130973|77160200000000001|200604031145|2005061|20060403|30/04/2006-03/04/2006|500085|EQT|AR|27.55|3 BT|1|1001|115031|100|29.05
|
| Somewhat off topic: Win XP getting sluggish | 04 Apr 2006 12:18 GMT | 2 |
Sorry for being off topic, but this is obviously very important for us developers. Got a new laptop just a few months ago, and everything including VS.NET and SQL 2000 ran pretty fast. But now it has gotten increasingly
|
| REMOTE process | 04 Apr 2006 09:14 GMT | 3 |
I need to fire or launch an application whose EXE/Path I know on a remote box on my network. My existing PROCESS code does not seem to do this despite the use of the .DOMAIN property where I pass the machine name. Please help.
|
| Invalid Search Path LIB environment variable | 04 Apr 2006 09:04 GMT | 1 |
I finally got around to removing NET Framework 1.0 from my development system. Now I'm getting the following warnings after successful compiles in VS2005/Framework 2.0: Warning 1 Invalid search path 'C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\Lib\' specified in 'LIB ...
|
| how does C# "yield" translate into VB.NET? | 04 Apr 2006 08:54 GMT | 3 |
How does the following C# code look like in VB.NET? IEnumerator<T> IEnumerable<T>.GetEnumerator() { foreach (Node<T> node in this.headNode)
|
| networkStream.Close() not working | 04 Apr 2006 08:41 GMT | 2 |
I am writing a TCP/IP service. Server side connections are accepted asynchronously: //code from AsyncCallback passed to beginAccept Socket ClientSocket = _AcceptorSocket.EndAccept(ar);
|
| A question about DLL | 04 Apr 2006 08:32 GMT | 1 |
Hello!! I'm using VS 2003 and C# and some dll. These dll are of type class library and windows control. Im I right if I say that there is a problems by having several dll project
|
| Crystal reports in C#.net | 04 Apr 2006 04:12 GMT | 1 |
I am a beginner, trying to open a crystal report using crytal report viewer in my webform. But nothing happens when I open the page. I am not sure where I went wrong. This is my code in page load. Please someone help me
|
| Mysterious delay on first use of HttpWebRequest.GetRequestStream | 04 Apr 2006 04:05 GMT | 4 |
I've got some code that looks like this (yes, I should be using 'using', but that's not relevant to the problem at hand): // // Create an HTTP request to do the POST
|
| .NET Framework 2.0 | 04 Apr 2006 03:45 GMT | 1 |
I have install .NET Framework 2.0 but in Visual Studio 2003 is always Framework 1.1.What have I missed ? I need to use version 2.0. Thanks Fero
|
| Returning an Enum From A Remote Service? | 04 Apr 2006 03:15 GMT | 5 |
I have a C# client and a C# remote service. I want to return an enum from the service to the client. I have defined the enum in a shared DLL referenced by both client and server which also contains the shared interface. But when the code runs (on .Net 2 on XP anyway), it fails ...
|
| Detect nullable types | 03 Apr 2006 21:35 GMT | 2 |
How can i tell if a type is nullable or not.. is ther an IsNullable() function somewhere?
|