WinForms Load Event / Static Initialization Strangeness

Posted by Eric J. on Stack Overflow See other posts from Stack Overflow or by Eric J.
Published on 2010-03-15T01:53:41Z Indexed on 2010/03/15 1:59 UTC
Read the original article Hit count: 451

Filed under:
|

Background

I'm troubleshooting an WinForms 2.0 program that's already been burned to CD for distribution to an internet-challenged target audience. Some users are experiencing a fatal error that I can reproduce locally.

Reproducing the Error

I get the fatal error when I log into my Vista box using a standard user that I just created, even if I run the program as administrator. I do not get the fatal error when I log in as local administrator. I'm not sure that being administrator is necessarily the trigger (since runas did not help). I have reproduced this half a dozen times under each account with consistent results.

The faulty code

Base.cs (base class for several user controls, only one of which is shown on first screen)

private void BaseWindow_Load(object sender, EventArgs e)
{
    // This message shown once in both cases
    MessageBox.Show("BaseWindow_Load for " + this.GetType().FullName);

    SkinManager.ApplySkin(this);
}

SkinManager.cs

private static Skin skin = null;
public static void ApplySkin(UserControl applyTo)
{
    if (skin == null)
    {
        skin = new Skin(SkinsDirectory, "Default");
    }
}

Skin.cs

internal Skin(string skinPath, string skinName)
{
    config = SkinConfig.Load(path);
}

SkinConfig.cs

public static SkinConfig Load(string path)
{
    // This message shown only once running as Admin but twice running as standard user
    System.Windows.Forms.MessageBox.Show("@1");
    // !!! LOCK path HERE !!!
}

A user control loads on the first form, which triggers a call to SkinManager.ApplySkin, which checks if skin is null and, if so assigns it (without thread synchronization or recursion protection), which ultimately causes a file to be opened.

When logged in as local admin, that sequence completes just fine.

When logged in as my test standard user, ApplySkin is always called a second time while skin is still null, causing a second attempt to load, causing the file to be locked on the second attempt. The error handling is draconian at this point and the program terminates.

The Question

While this code can be easily fixed, I would like to understand why the error is happening only in some cases.

© Stack Overflow or respective owner

Related posts about winforms

Related posts about initialization