Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / Visual Basic
Article

A class that persists form settings automatically

Rate me:
Please Sign up or sign in to vote.
2.33/5 (9 votes)
28 Oct 20031 min read 41K   1K   19   3
This class will save the settings of a form automatically.

Introduction

A common need for Windows forms is to remember the last position, size and state of the form. One way to do this is to call a function when your form loads and closes. I decided to do it the Object Oriented way. If your form inherits this class, it will automatically load and save the the form settings; Left, Top, Height, Width, and State; to a .config file.

Using the code

To use this class in a C# project

  • Add the "PersistentForm.cs" class to you project.
  • Add "using KrugismSamples" to the list of references at the top of the form code.
  • Change the:
    C#
    public class Form1 : System.Windows.Forms.Form

    to:

    C#
    public class Form1 : PersistentForm

That's it! When the form is loaded, the saved values are set to the form. When the form is closed, the settings are saved.

To use this class in a VB.NET project

  • Add a new existing project to your VB solution, and browse to the "PersistentForm.csproj" file.
  • Add a reference to the PersistentForm class in the Add Reference, Projects tab.
  • Add "Imports KrugismSamples" to the top of the source.
  • Change the:
  • VB.NET
    Inherits System.Windows.Forms.Form

    to:

    VB.NET
    Inherits PersistentForm

That's it! When the form is loaded, the saved values are set to the form. When the form is closed, the settings are saved.

Overview

This class is very straightforward. It simply inherits the Windows.Forms.Form class. It then overrides the OnCreateControl() and OnClosing() events. By overriding the base events, no additional code needs to be added to the form. (The LoadSettings() and SaveSettings() code is not shown here.)

C#
public class PersistentForm : System.Windows.Forms.Form
{
    public PersistentForm()
    {
    }
    protected override void OnCreateControl()
    {
        LoadSettings();     // Load the saved settings from the file
        base.OnCreateControl ();
    }
   
    protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
    {
        SaveSettings();        // Save the settings to the file
        base.OnClosing(e);
    }
}

History

  • 10-30-2003 - Edited for completeness
  • 10-29-2003 - Initial Release

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralFunctionality Issues Pin
Steve Miller5-Nov-03 11:08
Steve Miller5-Nov-03 11:08 
GeneralNot an Article Pin
Heath Stewart30-Oct-03 3:14
protectorHeath Stewart30-Oct-03 3:14 
GeneralRe: Not an Article Pin
Scott Krug30-Oct-03 17:33
Scott Krug30-Oct-03 17:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.