Search Results

0
votes
1answer
30 views

Programmatically scroll the windows mobile window

I have a form that has a number of controls on it (enough that the scroll bar is visible). How can I programmatically control the scroll window? I can fake it now by calling the .Sel …
5
votes

How to tell if .net app was compiled in DEBUG or RELEASE mode?

You're on the right path actually. If you look in the Disassembler window in reflector you will see the following line if it was built in debug mode: [assembly: Debuggable(...)] …
2
votes

Is there a sorted collection type in .NET?

I would extend your own list class that, as you mentioned, simply sorts after every insert. Since your inserts are infrequent the performance hit would be minimal, and sorting a nearly sorted list …
1
vote

Int128 in .Net?

Here's an implementation of big integer from .net matters. http://msdn.microsoft.com/en-us/magazine/cc163696. …
1
vote

Spell Checker Icon

It's likely in one of the common libraries. Start looking through the dlls found in C:\Program Files\Microsoft Office\Office12, I'd start with something tell-tale like MSOSTYLE.dll Be caref …
0
votes

How much to log within an application??? How much is too much…

From a security standpoint logging can be an interesting topic. I wrote a blog entry on CSO Online a while …
1
vote

System.Windows.Forms.WebBrowser.Refresh showing previous page

Try adding an event handler to your code that runs when the "DocumentCompleted" event fires. Then add your refresh code in there. There are some examples of code here in MSDN. If you do it this way …
0
votes

CNG, CryptoServiceProvider and Managed implementations of HashAlgorithm

The Cng versions are supposed to be a little faster, but I just wrote up a little program that compares the speeds of each. (I had a client that was asking about the performance characteristics of …