Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
There is a registry key property on the BrowseDialog that allows the settings to be saved to the registry... however, this is done on a per-computer basis, not a per-user basis. If you want to save off the settings into the database on a per-user basis, then you can inherit the BrowseDialog and override the RetrieveUserSettings method. The method returns a BrowseDialogUserSettings object that defines the size of the browse dialog as well as the search fields in the browse dialog. You'll also want to override the SaveUserSettings method to save the data back to the database. By default, those methods read and write all of the data to the registry if the registry key property is set.
|