Click here to Skip to main content
Licence 
First Posted 20 Apr 2006
Views 21,043
Bookmarked 18 times

Persisting TextBox Values in a Windows Forms Application

By | 20 Apr 2006 | Article
An article on saving textbox values of a Windows application, and restoring them when the application restarts.

Introduction

I was writing a Windows application and needed to save some values displayed in a textbox. I thought it would be neat if I could encapsulate the logic for persisting textbox values in a Windows Form and have it automatically restored when the application restarts, for example in an input form.

Using the code

The main bit of logic is encapsulated in the PersistenceHelper assembly.

public Form1() 
{
    ...
    persist = new StatePersistence(this);
}

The target form calls the persistence class from its constructor and passes a reference to itself in the argument. That is all that is needed. The rest is taken care of in the PersistenceHelper library.

public StatePersistence(Form form)
{
    this.form = form;
    this.form.Closing += 
      new System.ComponentModel.CancelEventHandler(form_Closing);
    formStateFileName = 
      Assembly.GetExecutingAssembly().Location.Substring(0,
      Assembly.GetExecutingAssembly().Location.LastIndexOf("\\")) + 
      "\\" + form.Name + ".xml" ;
    LoadControlValues();
}

The persistence library has only one class; StatePersistence.cs. Its constructor takes in a Form as parameter and loads saved values from an XML file into the Form's controls. The name of the persisted XML file is the form name + ".xml". It also subscribes to the Form's closing event, and when invoked, it saves the Form's controls into the XML file.

Fig 1: A sample Windows Form demonstrating persistence.

History

  • 14-April-2006 - Initial version.

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

About the Author

Shailen Sukul

Web Developer

Australia Australia

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalwhere multi-threaded filedownloader application for my next article... Pinmemberalhambra-eidos1:34 25 Feb '09  
GeneralRe: where multi-threaded filedownloader application for my next article... PinmemberShailenSukul16:14 3 Mar '09  
Generalelaborate please PinmemberRedSunBeer19:35 25 Apr '06  
AnswerRe: elaborate please PinmemberC-Sharper14:34 4 May '06  
GeneralRe: elaborate please PinmemberShailen Sukul17:59 4 May '06  
sorry about the late reply.. been flat out at work lately.
in any case, c-sharper has beat me to the reply
 
Also keep watching this space.
I am going to post a complete multi-threaded filedownloader application for my next article...
Wink | ;)
Generalgood Pinmemberi.Posei4:13 21 Apr '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 20 Apr 2006
Article Copyright 2006 by Shailen Sukul
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid