Personal variables are used to populate the custom dialogs, and are updated by the values, users enter in dialogs.
The load and save procedures exist in Fred.vb (LoadValues and SaveValues) and in Ted.vb (LoadTedValues and SaveTedValues) files.
Every variable has a line in the Load procedure and in the Save procedure.
Load values
The syntax is (given by examples; of course, the names of your variables will be different):
Check boxes: form.T_ReopenBody.Checked = SystemUserOptions.T_ReopenBody
String fields: form.AFPCC_PCFields.Text = SystemUserOptions.AFPCC_PCFields
Save values
The syntax is (given by examples; of course, the names of your variables will be different):
Check boxes: SystemUserOptions.T_ReopenBody = form.T_ReopenBody.Checked
String fields: SystemUserOptions.AFPCC_PCFields = form.AFPCC_PCFields.Text