Search Results

1
vote

C# and .NET FOLDERID

This morning I read about Vista Bridge. It may help. "Many of you don’t know about the Vista Bridge sample library, what can it do or even where you can find it. Let’s start with the basic …
0
votes

When would you use delegates in C#?

The comparison param in In Array.Sort(T[] array, Comparison comparison), List.Sort(Comparison comparison), etc …
-1
votes

Set same icon for all my Forms

I'm not sure if the MS VS designer can deal with Forms that don't derive directly from Form. If not then you may try to copy the main form's icon to all other forms: for each form in Forms collecti …
0
votes

Which Version of StringComparer to use

System.Collections.Specialized includes StringDictionary. The Remarks section of the MSDN states "A key cannot be null, but a value can. The key is handled in a case-insensitive manner; it …
0
votes

How can I find the method that called the current method?

Another approach I have used is to add a parameter to the method in question. For example, instead of void Foo(), use void Foo(string context). Then pass in some unique string that indicates the ca …
1
vote

Convert IDictionary<string, string> keys to lowercase (C#)

System.Collections.Specialized.StringDictionary() may help. MSDN states: "The key is handled in a case-insensitive manner; it is translated to lowercase before it is used with the string di …
0
votes

Best way to track down a memory leak (C#) only visible on one customer’s box

PerfMon can be helpful (http://dotnetdebug.net/2005/06/30/perfmon-your-debugging-buddy/). There are seve …
0
votes

System.Diagnostics.Process.Start weird behaviour.

I too noticed that in a project about 2 years ago. I called .Refresh() before requesting certain prop values. IT was a trial-and-error approach to find when I needed to call .Refresh(). …
1
vote

What is the recomended way to skin an entire application in WPF?

Does anyone know if the recently-released Composite Application Guidance from the MS patterns & practices group offers skinning abilities? …
0
votes

.NET (C#): Getting child windows when you only have a process handle or PID?

You may find that if you call .Refresh() that you get the new top-level window. …
0
votes

Looking for a .NET Function that sums up number and instead of overflowing simply returns int.MaxValue

Does it overflow a lot, or is that an error condition? How about using try/catch (overflow exception)? …
3
votes

What’s Your Biggest Visual Studio 2008 Annoyance?

VS2008 SP1 caused more problems that it fixed for our team. I am trying to work with MS via Connect, but progress is slloooowwwwwww. 1) IDE disappears if you have a pane floated (Callstack, etc) an …
0
votes

Use a separate scroll bar for a textbox

We have been using WPF in our most recent project. Is WPF an option for you? If yes, it appears as if everything UI can be altered in WPF apps. We use 2 UI artists. One works in in Adope Photoshop, …