| Thread | Last Post | Replies |
|
| Regex and Hashtable | 23 Nov 2006 16:03 GMT | 1 |
Shalom. I need to go over a file, and check for each line if it matches a Regex from a list of expressions. (If it matches ANY of the expressions, this is good enough).
|
| Can someone please check my understanding here and suggest fix | 23 Nov 2006 16:03 GMT | 4 |
The following code was supplied by a kind poster as a solution to a problem i was having. But it's not quite working. I have commented the code myself below. Can you please read my comments to make sure what i've said is correct to check my understanding of what is happening.
|
| Managed C++ - Asynchronous Socket Comm - AsyncCallback | 23 Nov 2006 15:11 GMT | 1 |
I have developped asynchronous socket communication with blocking Socket commands (accept, connect, send, receive) by using threads on Windows .NET Forms. It is working properly. Now I want to code the similar program with Asynchronous Socket commands of .NET using Managed C++ ...
|
| Invokation added at runtime? | 23 Nov 2006 14:31 GMT | 2 |
I have an abstract class with a bool property: class Abstract { protected bool throwException; protected void ThrowException{
|
| Resizing Frame | 23 Nov 2006 14:26 GMT | 3 |
I would like to ask how can one resize a frame in a website w/o postback? My scenario is the following I have a left frame, a top frame, and a "contents" frame.
|
| Serialization of dataGridview? | 23 Nov 2006 14:18 GMT | 1 |
how can I serialize a dataGridview Object? I didn't find any method with name serialize(). I know it sound wired, but I want to encrypt the data afterwards... Regards
|
| UserControls | 23 Nov 2006 13:30 GMT | 3 |
can someone tell me whats the best way to place user controls on a form? I have to place a dynamic numer of usercontrols inside a form and of course the form needs to show up scrollbars.
|
| CreateDelegate in VS.NET 2003 - error on binding method | 23 Nov 2006 13:16 GMT | 1 |
I'm trying to delegate all events of a command button to a single method, handlesAll. I wrote the following code in VS.NET 2005, and it worked fine: public void setUpDelegates()
|
| How access other project classes | 23 Nov 2006 12:50 GMT | 11 |
Hi experts! I have two projects ... so First project cs code like this, using System;
|
| Client Callbacks generated from User Control's page load event | 23 Nov 2006 12:25 GMT | 3 |
I have a user contol hosted in a webform. The user control interfaces with an http component. When the user control loads, a request is sent to the http component. It takes around 10 seconds before a response is returned.
|
| Please advise of basic problem in my code (using opendialog) | 23 Nov 2006 12:03 GMT | 7 |
This is the first time i've worked with openfile dialog. I'm getting a couple of errors with my very basic code. Can someone point out the errors in what i've done please. ==========================================
|
| get count of ReadLine in StreamReader | 23 Nov 2006 11:48 GMT | 4 |
Question 1. i am using StreamReader Class like this... string str = string.Empty; StreamReader sr = new StreamReader(fsIn,Encoding.Default)
|
| C#3.0 extension methods and the like for the Gurus | 23 Nov 2006 11:09 GMT | 3 |
I recently got into somewhat of a debate with a fellow co-worker. First I asked him if he new of a way to add a method to an existing class like enhancing a class but without using Inheritance. He asked, "Why on earth would you want to do this? Just inherit." I told him
|
| Path.InvalidPathChars question | 23 Nov 2006 10:12 GMT | 3 |
I have determined, that Path.InvalidPathChars does not return an array with all invalid path characters. For instance the question mark (?) does not appear in the array, but it is not possible to create a folder with a question mark (?).
|
| try...catch and local variables | 23 Nov 2006 09:42 GMT | 28 |
I'm getting frustrated with using try...catch with local variables: The code below wont compile in .NET 1.1: I get the following error: "Use of unassigned local variable 'oProcessFileReader' " Is there a way around this error?
|