| Thread | Last Post | Replies |
|
| simple way of continuing out of outter loop | 03 Apr 2008 15:02 GMT | 4 |
Say I have two nested foreach loops, is there any simple way of continuing out of the outter most loop depending on what happens in the inner most? e.g., foreach(int i in I)
|
| Sort a LinkedList | 03 Apr 2008 14:34 GMT | 3 |
I have a LinkedList of network objects defined: LinkedList<NetworkObject> and I want to sort the contents against one of the properties. I'm not looking for people to post page long algorithms on how to write a
|
| getsockname | 03 Apr 2008 13:53 GMT | 2 |
Is there a C# equivalent to getsockname? Or, what is the C# way of getting the port a socket is bound to if you allow windows to pick the port for you?
|
| DataGridView checkbox column issue | 03 Apr 2008 12:51 GMT | 1 |
Hi have a datagridview with a textbox columns (prices) and a checkbox column. I want that when a row is checked, some a value is incrmented with the price colmun. Everything works fine, if I click chekbox cell slowly (true-false-true-false...). However, if I click faster, it ...
|
| UDP Broadcast datagrams sent and received on same computer. | 03 Apr 2008 10:55 GMT | 2 |
I apologize in advance since this isn't strictly the most appropriate group to ask this question in. I am using a Socket to broadcast UDP datagrams as such: FSocket.EnableBroadcast = true;
|
| How to wrap unmanaged C++ code so as to use it from C# | 03 Apr 2008 09:49 GMT | 4 |
I must use some unmanaged C++ code functionality from my C# managed application. I do only have .cpp and .h files for that piece of code, nothing more. I understand I should wrap these files into a C++ project type so that
|
| architecture question | 03 Apr 2008 08:21 GMT | 4 |
if in a client-server application the server has to deal with about 1.000 clients is .NET Remoting (RPC) the right choice of the communication or is a message oriented communication (e.g. MSMQ) the better choice? Christian
|
| DataGridView, BindingList : Add and Remove | 03 Apr 2008 07:50 GMT | 1 |
It is possible to capture the "AddingNew" event to create our own object before it is append to the BindingList (using e.NewObject = new ...) When the user press delete on a row to remove a row from the DataGridView, I need to do some stuff before it actualy modify the content of ...
|
| Linq object original value | 03 Apr 2008 07:37 GMT | 2 |
I need to be able to track the original value of the object. The datacontext doesn't seem to provide any way to do this, you can get the modified objects but not the original state. I don't see any way to specify an additional interface for each table using the designer :( If I ...
|
| new versions of DOTNET | 03 Apr 2008 06:59 GMT | 3 |
hi friends, I am ramesh from chennai, INDIA. working as s/w eng(ASP.NET) also new to this group. happy to join with group members.
|
| Non Virtual method using CodeMemberMethod -- CodeDOM | 03 Apr 2008 03:11 GMT | 2 |
I am using CodeDOM namespace to dynamically generate code in C#. But when I am creating method using “CodeMemberMethod” then its creating a virtual method even though I am not specifying anything to create a virtual method. I am using following code to add method:
|
| static events | 03 Apr 2008 00:51 GMT | 12 |
I have implemented a static event. Is there anything special that i have do? Is thread safety an issue?
|
| Newbie GridView question | 02 Apr 2008 20:55 GMT | 1 |
Hello I have a form that uses a Gridview to display data obtained from the database. The problem I am having is that the data I receive is tremendous amount of text.
|
| Looking for a SqlBulkCopy that can do UPDATE... | 02 Apr 2008 20:38 GMT | 5 |
Using : MS-SQL 2005 / .NET 2.0 / VS2005 I have two server with the same database def but different data. I would like to import data from Server2.TableA to Server1.TableA. If a row doesn't exists on Server1.TableA, it should be added; if the data already
|
| How to use Intptr as BYTE* or HANDLE* | 02 Apr 2008 19:34 GMT | 2 |
I have a question about Intptr and how I can use it I have a C++ code which do the following: DWORD nBufferSize = 0; BYTE *pBuffer = NULL;
|