| Thread | Last Post | Replies |
|
| How do I loop through multiple instance of an XmlNode | 17 Jun 2006 12:50 GMT | 2 |
Given the XML sampe below, how would I loop through all of the borrowers in the XML document in order to process the attributes: <REQUEST_GROUP MISMOVersionID="2.1.1" InternalAccountIdentifier=""> <REQUEST RequestDatetime="2003-12-08T09:37:28>
|
| explicitly cast List<List<object>> | 17 Jun 2006 11:41 GMT | 4 |
If I have a class A, and a List<List<object>> containing instances of A. How do I explicitly cast List<List<object>> as List<List<A>>?
|
| retrieving MAC address using C# question. | 17 Jun 2006 11:22 GMT | 3 |
This is the code I'm using to get MAC address.. ------------------------------------------------------------------------------------------- ManagementClass mc = new ManagementClass ("WIN32_NetworkAdapterConfiguration");
|
| try/catch block design. Two approaches, which one's best?! | 17 Jun 2006 10:21 GMT | 9 |
Hi all, happy Friday! (certainly Friday is a day worth celebrating). I have a question on try/catch design (an exciting Friday topic for sure): I can either put a try/catch block in every function and have each one of those handle and log the error in some way (I'm thinking of using
|
| webclient-webrequest please help! | 17 Jun 2006 09:51 GMT | 2 |
First, I'm sorry because of my english... I'll try to be understandable! I've got a strange problem using .NET 2003 C# and I haven't figured it out for a long time. I'm implementing an application to download images
|
| About Best Coding style of c# | 17 Jun 2006 08:52 GMT | 1 |
List<string> effectList = new List<string>(); effectList.Clear(); effectList = null; using (List<string> effectList = new List<string>())
|
| Passing password to EmailTraceListener? | 17 Jun 2006 08:47 GMT | 1 |
I am using the logging application blocks and would like to be able to send errors to an admin so they are seen immediately. The problem is the SMTP server requires authentication yet I see no where in the EmailTraceListener where I can supply credential. Is there anyway I can ...
|
| Edit C# ListView SubItems | 17 Jun 2006 07:27 GMT | 1 |
In my C# windows form project, I have a ListView mylvw. I set the property LabelEdit to true, and I can edit the Item in the mylvw. But what I want to do is not just edit the ListView Item, but also the SubItems.
|
| can I create an enum dynamically in the code? | 17 Jun 2006 07:16 GMT | 4 |
Can I create an enum dynamically in the code, e.g. data base driven? Thanks! Ryan
|
| Fontsize difference | 17 Jun 2006 03:05 GMT | 1 |
I am running a program to put a captcha image on my string and am trying to make sure all the characters fit. The problem is the size seems to be wrong. What I am doing is starting from the rectangles' height + 1 (not sure why I
|
| Satellite Assemblies using AL.exe and /embed | 17 Jun 2006 02:59 GMT | 1 |
I am trying to run a bat files using AL.exe and have 1 question I can run the exe this way - all is fine "C:\WINNT\Microsoft.NET\Framework\v2.0.50727\al.exe" /t:lib /culture:es-ES /embed:C:\Test\MyName.Space.LoginForm.es-ES.resources
|
| VS2005 IDE Question : How do I stop the automatic formatting for base() | 17 Jun 2006 02:56 GMT | 1 |
I am using VS2005. When I paste source code into the code window, VS2005 formats like the following: public MsgRecipientReader()
|
| Help with ReadXML | 17 Jun 2006 01:55 GMT | 1 |
I currently have this code: string filePath = "c:\\results.xml" PlayersDataSet.ReadXml(filePath); and it works fine, it reads the local xml file into a dataset...
|
| Visual C# Express Edition | 17 Jun 2006 00:49 GMT | 4 |
Can the Express Edition of Visual C# compile distributable class libraries (i.e. DLLs)? Thanks
|
| Bitmap to Bytes and Back | 16 Jun 2006 23:41 GMT | 2 |
I'm interested in the process of taking a live bitmap oject with an image already loaded in it, and representing it as a string such that a whole bitmap carrying the same image can be constructed using only that string. It doesn't HAVE to be a string, it could be an array of ...
|