Quote Originally Posted by Hack
You are absolutlely on the right track Tigerman. Here is an example of what I think you need. Modify as necessary
VB Code:
  1. Private Sub mnuDefault_Click()
  2. SaveSetting "NameOfYourApp", "AppropriateSectionName", "AppropriateKeyName", Text1.Text"
  3. End Sub
  4.  
  5. Private Sub Form_Load()
  6. Dim strMySetting As String
  7. strMySetting = GetSetting "NameOfYourApp", "AppropriateSectionName", "AppropriateKeyName"
  8. Text1.Text = strMySetting
  9. End Sub
Clear as mud?
I don't get the part of "NameOfYourApp", "AppropriateSectionName", "AppropriateKeyName", what are each of them ?

thnx in advance,
Phil.D.