| Thread | Last Post | Replies |
|
| Is WebClient the correct Class to be using for this app? | 20 Dec 2005 19:05 GMT | 3 |
My app needs to make 3 calls to a remote server. 2 contain key value pairs, and one is a simple ping type call. All 3 are to listen for data returned in key-value pairs. Is WebClient.UploadData the correct way to do this? The remote server
|
| Web App Without IIS | 20 Dec 2005 18:40 GMT | 5 |
Hi, I am trying to develop an ASP.NET application. Is it possible to develop and do some testing on a PC that is not running IIS? For security reasons the PCs running IIS are limited. David
|
| patterns & pratices | 20 Dec 2005 18:02 GMT | 2 |
I'm trying to do the lab at http://www.microsoft.com/downloads/details.aspx?FamilyID=B9BFF619-236C-4BBB-9AA1 -2E7BC562C7F5&displaylang=en It instructs you to add two resources, Microsoft.Practices.EnterpriseLibrary.Data.dll
|
| Loading Assemblies | 20 Dec 2005 17:59 GMT | 1 |
When dynamically loading classes through reflection using Assembly.LoadFrom I have the following questions: 1) Once you load an assembly it doesn't appear you can unload it. If you try to load an assembly multiple times does this cause any type of memory
|
| Sending SMS / MMS via C# Application | 20 Dec 2005 17:52 GMT | 1 |
I'm looking for a way to send SMS/MMS from my C# app. Has anybody any hints for me where to start? I was digging through the net but the information I found was kinda "foggy" to me... Regards,
|
| Right shift operator | 20 Dec 2005 17:37 GMT | 3 |
Pardon me if this has been asked a million times -- but I thought that because of generics, the right shift operator was supposed to change with C# 2.0. I thought it was supposed to change from ">>" to "> >", to distiguish it from nested generics.
|
| Tab order between UserControl | 20 Dec 2005 17:32 GMT | 7 |
Consider a Form that looks like: [ a1 ] [ b1 ] [ a2 ] [ b2 ] a1 & a2 is a *custom* UserControl, as is b1 & b2.
|
| System.Collections.Hashtable serializable to xml | 20 Dec 2005 17:31 GMT | 1 |
is it possible to make a universal hashtable that would be able to serialize itself to xml format? universal one, meaning I don't have to know about the type of keys and values in advance. Ivan
|
| DEEP copy of ArrayList containing RichTextBoxes ... | 20 Dec 2005 16:34 GMT | 8 |
I am relatively new to C# but like it. I have run into a problem to which I haven't been able to find a solution despite looking. I have an ArrayList that contains several RichTextBoxes (via Add())
|
| in a bool 2d array, does Initialize set everything to false? | 20 Dec 2005 16:31 GMT | 5 |
Basically what the subject says... "in a bool 2d array, does Initialize set everything to false?"
|
| How to validate a string containing Chinese? | 20 Dec 2005 16:29 GMT | 2 |
I want to validate a string, and see if it contains any Chinese character (simple or traditional). I'm trying to use RegExp and Encoding, but no result. Can someone point me a direction?
|
| How can I retrieve the default namesace of an assembly? | 20 Dec 2005 16:25 GMT | 4 |
I have an Assembly object that I need to get a resource stream from. The name of the resource is of course based upon the default namespace, not the assembly name. Is there a way to use reflection to get the default namesace?
|
| switch case | 20 Dec 2005 16:00 GMT | 3 |
In VB6 I could do the following Select Case Right$(Text, 1) Case "a","b" do this
|
| UDP Broadcast recieve | 20 Dec 2005 15:13 GMT | 1 |
I can't figure out why my code does not recieve the message. The only message that it receives is the one going out from my machine. I am suppose to send out a message to a server. Upon receiving that message on the server side the server is suppose to send a message back. I
|
| wav file to float | 20 Dec 2005 15:05 GMT | 1 |
I have to create a float value list from a stereo wav file. i need following datas: time, left channel value,right channel value how can i do this?
|