Search Results

0
votes

Show a Form without stealing focus (in C#)

Create and start the notification Form in a separate thread and reset the focus back to your main form after the Form opens. Have the notification Form provide an OnFormOpened event that is fired f …
2
votes

c# store user settings in database

The VS designer keeps property settings in the ApplicationSettingsBase class. …
2
votes

Tracing versus Logging and how does log4net fit in?

log4net is well suited for both. We differentiate between logging that's useful for post-release diagnostics and "tracing" for development purposes by using the DEBUG logging level. Specifically, d …
9
votes

.NET - What’s the best way to implement a “catch all exceptions handler”

For Winform applications, in addition to AppDomain.CurrentDomain.UnhandledException I also use …
1
vote

How do I best obfuscate my C# product license verification code?

Rex is correct, internal sealed class won't hid …
5
votes

Implementing MVC with Windows Forms

I wrote an article last year, Selecting a MVC/MVP Implementation for a W …
5
votes

UserControl as an interface, but visible in the Designer

If SomeCustomerNameUserControl is defined like this: class SomeCustomerNameUserControl : UserControl, ICustomerName { } You can still drop this contro …
1
vote

Login dialog for Windows client application

I think you're stuck creating your own dialog. It's not that hard to make it look official though. …
0
votes

How to access DataGridView column names safely?

The only way to prevent run-time problems is to catch the ArgumentException when trying to access a non-existent Cells item. For example: private void SetC …
0
votes

Creating a webbrowser control in a background thread in backgroundworker

The thread that the Webbrowser runs in must be ApartmentState.STA. From a BackgroundWorker …
0
votes

COM Interop registration problem

I ran into the default constructor problem. What fooled me was that the type library file will contain the class GUID reference even though that class is not being registered. A quick way to see w …