| Thread | Last Post | Replies |
|
| reflection for plug in | 22 Sep 2006 03:25 GMT | 4 |
I am trying to create a plug-in handler that discovers and enumerates my plug-ins at runtime. I've got it working, but I had to defensively trap and swallow a lot of exceptions. Is there a better way to discover if an executable is a valid assembly? Is there a better way to ...
|
| Automatic Resize of Panel | 21 Sep 2006 17:27 GMT | 1 |
I have a public class ChartPanel : System.Windows.Forms.Panel and add with this.Controls.Add(...)
|
| Hang when new DirectoryEntry declared | 21 Sep 2006 12:27 GMT | 5 |
I am using the System.DirectoryServices namespace in .net 2003. I have noticed some very strange behaviour related to the DirectoryEntry class. If I debug the following code with a break point on the Console.WriteLine
|
| Intellisense in ASP.NET textbox | 21 Sep 2006 11:13 GMT | 2 |
Do you know how to implement intellisense behaviour in ASP.NET textbox. Like in destination textbox at http://www.booking.com/ site? It shows cities from all over the world and it works extremely fast. I think it's some sort of partial callback?
|
| Adding contraints and inheriting | 21 Sep 2006 09:26 GMT | 2 |
A simple question I hope I have a class public abstract class authenticatedBoundForm<T> : authenticatedPage, IControlPage
|
| Dynamically instance a class | 21 Sep 2006 09:09 GMT | 3 |
I have a setting in my database where the user specifies a tax configuration (e.g. "UK/EU") and I have several tax classes that handle these different configurations. So what is the best way to instance the proper class based on what is in this configuration parameter. I could ...
|
| .NET Framework 2.0 | 21 Sep 2006 07:32 GMT | 2 |
Say, I've installed the .NET Framework 2.0. When I've used the Norton WinDoctor feature, it is showing 'errors' concerning various (.exe) files in this Framework not finding the file 'msvcr80.dll'. Where did I go wrong here??
|
| Remoting Internals | 21 Sep 2006 07:21 GMT | 2 |
I am trying to find information on the internals of remoting. I want to find out things like: If I host remoting in a NT Service how does it manage the requests. Does is use the threadpool? How many concurrent request can be serviced by one host.
|
| Announcement: NLog 1.0 has been released | 20 Sep 2006 20:36 GMT | 2 |
NLog 1.0 has been released.! After 2 years of work, we're proud to announce the availability of NLog 1.0. NLog is a FREE logging library for .NET designed with simplicity and flexibility in mind. See http://www.nlog-project.org for more
|
| syncronized class | 20 Sep 2006 19:25 GMT | 11 |
Is there any way to specify that all methods of a class should be synchronized other than applying the [MethodImpl(MethodImplOptions.Synchronized)] attribute for every method ? Gerry
|
| Are named pipes quicker than just reading and writing to files? | 20 Sep 2006 19:14 GMT | 3 |
Hi all, I've been looking into doing some interprocess communication and have been reading about named pipes. Everyone seems to indicate that if the processes are either on your local PC or at least on your local LAN AND your messages are reasonably small (under a kilobyte) -
|
| How to determine when a process has finished initial loading | 20 Sep 2006 19:09 GMT | 2 |
Is there a standard way of determining when a process has finished its initial loading, such that it is ready to accept commands? For example, I am starting Visual Studio (devenv.exe) from my own program. I would like to perform some actions (like open a file), when Visual ...
|
| Bug Log for Microsoft // Missing Enum Value in Framework | 20 Sep 2006 19:07 GMT | 4 |
Is there an official "bug report" location, to report a DotNet framework bug? I don't like to throw out the "bug in the framework" thing very often, but I think I've done the homework on this one.
|
| Delegate Invoke Performance | 20 Sep 2006 16:58 GMT | 4 |
hi.. guys I have a question about delegate invoke. Let us say, I have a function void A() and a delegate AA which points to A(). I run A(), and AA.Invoke()
|
| Event handling (C# vs VB6.0) | 20 Sep 2006 13:45 GMT | 2 |
I have the following code in C# to "sink" an event with an event handler. Obj.OnCallEvent +=new CallEventHandler(obj_OnCallEvent); obj_OnCallEvent being the actual method and "obj.OnCallEvent" is the
|