| Thread | Last Post | Replies |
|
| Remote Server Status | 30 Dec 2006 02:57 GMT | 1 |
What is the best way to determine if a remote server is available? HTTP server. Mail Server _______________________________________________
|
| Binary search class: small problem retrieving the last element in the ordered array | 29 Dec 2006 22:42 GMT | 11 |
I have an array of strings and need to find the matching one with the fastest possible code. I decided to order the array and then write a binary search algo. What I came up with is the following. I noticed that if I set:
|
| Re: Convert String Value into XML | 29 Dec 2006 22:40 GMT | 2 |
"sloan" <sloan@ipass.net> wrote in message news:...
> Here are some key words to get you going: |
| Retrieving from inside a static method the type of the containing class??? | 29 Dec 2006 21:01 GMT | 8 |
is there a way of retrieving the type of the class containing a static method from the method itself when it gets called? I have this situation: an abstact class that defines a static method, a class that derives from the abstract class and I need
|
| using enums in refleciton | 29 Dec 2006 20:59 GMT | 3 |
I am trying to parse some text into c# commands using reflection. I am new to this so there may be a simpler way of doing things. Anyhow, the below code works fine except for enums. PropHere is an array containing the string name of the property I want to set and newValues
|
| DataTable or DataSet from XML | 29 Dec 2006 17:55 GMT | 6 |
Hello NG, Originally I posted this question on microsoft.public.xml but did not get any reply all day so cross posting it on this NG in hope of getting some answer -
|
| XML Edit/Save | 29 Dec 2006 16:29 GMT | 2 |
Hey All, I need to edit an existing XML file and save it. It seem pretty easy and straight forward but it fails because (I assume) the xml document lists a schema location that I do not have access to.
|
| Trace class truncates string when it contains null chars??? | 29 Dec 2006 16:15 GMT | 1 |
using the WriteLine method of the Trace class I noticed that strings containing null characters (i.e. \0) get truncated in the output window at the first null char and anything that follows simply gets lost. I'm using .NET 1.1 (have not tested with 2.0).
|
| binarywriter and buffer size? | 29 Dec 2006 16:03 GMT | 3 |
Check the following code ///Buffer to store the data byte[] data = new byte[DEFAULT_BUFF_SIZE]; ///Create a memory stream from the buffer
|
| Redirect Not working after UpdateItem | 29 Dec 2006 15:28 GMT | 1 |
I'm using a DetailsView in asp.net 2.0 and C#. After the UpdateItem(true) is hit, I want to redirect the page to the next page. The code won't do this though for some reason. As soon as the update is done, the same page just reloads. Could anyone help me with this? Here's a piece ...
|
| ObjectMapper.net | 29 Dec 2006 14:48 GMT | 3 |
First of all - sorry if this forum ist not the most suitable one for my question... I am using the current version from ObjectMapper.net and try to solve the following:
|
| Xml element declaration with the namespace attributes | 29 Dec 2006 13:40 GMT | 1 |
I need to form an xmlelement like the declaration below: <message xmlns="http://abcd.com" xmlns:s2s="http://abcd.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://abcd.com message.xsd">
|
| Kill a MessageBox | 29 Dec 2006 13:00 GMT | 1 |
How can I kill or close a MessageBox that is shown in a thread that I later abort? In the following code, the MessageBox will always stay open until closed by the user, even when the other event terminates first and the main WaitForData method returns!
|
| Access form controls from another form | 29 Dec 2006 12:54 GMT | 1 |
How can I modify a form control property from another form. Let's say, I have a frmMain that has a ToolStripMenuItem with the current user info. Then, I open another form (frmChangeUser) and after I enter a password in that form, the current user will change and the frmMain ...
|
| How to use XmlWriter Class to convert a Object with data to Xml format? | 29 Dec 2006 12:47 GMT | 1 |
How to use XmlWriter Class to convert a Object with data to Xml format? Regards, Sugandh
|