samdnp

Stories submitted by samdnp

DataGridView Tips & Secrets(dotnetperls.com)

submitted by samdnpsamdnp(980) 4 years ago

Many ways to improve your DataGridViews in your apps, with short explanations. Very useful for fixing usability or graphical bugs, with some original code and lots of comments. read more...

add a comment |category: |Views: 283

tags: another

Customized Dialogs in C#(dotnetperls.com)

submitted by samdnpsamdnp(980) 4 years, 2 months ago

This article details how to use a custom dialog class, that adheres closely to Vista UI guidelines, as well as those for XP. User-defined icons and a more flexible structure, all resized automatically by custom graphics code. Short and simple, and extensible. read more...

add a comment |category: |Views: 12

tags: another

More on GZip compression with ASP.NET Content(west-wind.com)

submitted by samdnpsamdnp(980) 4 years, 2 months ago

If you have a hosted site, sometimes you cannot change settings on the IIS server. This article shows you how to enable GZip compression directly within ASP, bypassing the server settings. I used this code on my site and it works great. read more...

1 comment |category: |Views: 163

tags: another

NGEN: Improve Winforms Apps' Startup Times in a Few Steps (Code)(dotnetperls.spaces.live.com)

submitted by samdnpsamdnp(980) 4 years, 3 months ago

Some free code that you can use to enhance a Windows Installer to precompile your .NET app's code to a native image. Usually, a performance improvement between 2x and 4x can be seen when using NGEN. This post provides an easy way to invoke NGEN. read more...

add a comment |category: |Views: 66

tags: another

Single-Instance C# .NET Application Code(dotnetperls.spaces.live.com)

submitted by samdnpsamdnp(980) 4 years, 3 months ago

I spent a couple days trying to figure out the best way to create a single-instance C# app. Most approaches posted on the Internet will eventually fail on hidden windows because of a quirk in the Windows API. Here I try to solve the issue for C# developers once and for all (for now). read more...

add a comment |category: |Views: 56

tags: another