| Thread | Last Post | Replies |
|
| What differentiates Delegates Beyond Name/Signature | 22 Jun 2007 17:51 GMT | 2 |
It appears to me that the only things that differentiates any delegates is (1) the type name, and (2) the signature (return type or void, and parameters). Is this true? Take, for instance, the Predicate<T> delegate in the bcl. It is a required
|
| How to Capture UDP Packets | 22 Jun 2007 17:17 GMT | 1 |
Hi can any one tell me how to capture UDP Packets using sockets or UDPClient with some pseudo code in .Net
|
| Some Interview Questions: Need answers | 22 Jun 2007 17:16 GMT | 2 |
Hi! I need answers to these questions that were given to me in a job test. 1. What is IDisposable in .NET? 2.What is the base class of all the controls in .NET?
|
| How to navigate recordset in C#? | 22 Jun 2007 16:52 GMT | 2 |
I have VC# 2005. I need to use ADODB instead with ADO.NET. I can open a recordset. however, I can not navigate records in recordset. How can I navigate records? What is the command line for adorecordset.movenext, adorecordset,movefirst...etc. Please help me out.
|
| Searching in ListView | 22 Jun 2007 16:46 GMT | 1 |
I want to make searching in listView looks as winamp searching. I mean I write a few first letters and then a small window appears with list of words which begin from those letters. Give me an advice how to do it.
|
| timers and locks | 22 Jun 2007 15:43 GMT | 3 |
I have a timer which I use to process some events that have been added to a queue. The processing may take longer than the timer tick and so the timer catches up with itself. I would like to lock the timer so that this doesn't happen, so I do:
|
| Converting Windows forms to aspx pages | 22 Jun 2007 15:35 GMT | 1 |
I am new to c# applications, rite now I am doing a project which needs creation of windows forms application, this windows forms needs to be converted to asp pages. I have a doubt in my mind, wether it is possible to do this?
|
| DataBind() on Master Pages with simple controls | 22 Jun 2007 15:32 GMT | 1 |
Has anyone come across a way to bind simple properties (e.g. <%# DateTime.Now.Year %>, <%# UserName %> in the underlying HTML) without doing a general DataBind(); call? Not only does it seem a massive waste of resources, I find this call
|
| Form designer looses controls | 22 Jun 2007 14:04 GMT | 10 |
Hi NG, It happens quit often, that in Visual Studio 2005 the form designer "looses" controls. Actually it does not really loose them, but the are no longer visible and to
|
| Receive UDP Pockets | 22 Jun 2007 13:19 GMT | 5 |
Hi am trying to receives UDP pockets , but it is blocking in the "Socket.Receive" can any one help me to find the problem...? byte[] buffer = new byte[50]; Socket socket = new Socket(AddressFamily.InterNetwork,
|
| Strange Behaviour with MultiLine Textbox Control | 22 Jun 2007 13:11 GMT | 2 |
I am developing an app in VS2005 (actually in VB.NET but this question, I believe, would apply to any .NET language) that is used to design the contents of an XML file. One of potential items that would be in this XML file is a String property that contains the code for a
|
| enable/disable buttons based on ListView selection | 22 Jun 2007 12:03 GMT | 6 |
I have a form that contains a listview on the left side and a column of buttons on the right side. Only some of the buttons do I want enabled all the time. The other buttons should be enabled only if something is selected in the listview. That part specifically works but not ...
|
| encoding/decoding question | 22 Jun 2007 11:42 GMT | 5 |
Slightly OT, but someone may know an algorithm to help me do this .... I have six numbers that I want to encode into one single larger number. The 6 numbers may be presented as ff: number Range
|
| Garbage Collector and dispose | 22 Jun 2007 10:05 GMT | 11 |
Hi NG, just a short question: If a class implements the IDisposable interface, does the garbage collector always call the Dispose() method of the class, before it is cleaned up?
|
| C# / Winforms multithreading | 22 Jun 2007 09:31 GMT | 3 |
Hello, all. I'm developing an application that has a listview of records (pulled from the database) and a preview pane. Basically, when the user clicks on a record in the listview the preview pane gets
|