June 2003
Intermediate to advanced
800 pages
34h 20m
English
You want to store the size and position of a resizable form and restore it the next time the form is shown.
Store the Left, Top, Width, and Height form properties in the registry.
The registry is an ideal place for storing position and size information for a form. Typically, you’ll store each form in a separate key, perhaps using the class name of the form. These keys will be stored under an application-specific key.
To automate this process, it helps to create a dedicated class that saves and retrieves form settings. The FormSettingStore class shown in the following example fills this role. It provides a SaveSettings method that accepts a form and writes its size and position information ...
Read now
Unlock full access