You could always save each field by using
SaveSetting(My.Application.Info.Title.ToString, "SearchForm", "Textbox1", textbox1.txt)
' Do a version of the line above for each field you want to save
Then when you reload the form put the following in the load event
Textbox1.text = GetSetting(My.Application.Info.Title.ToString, "SearchForm", "Textbox1", "(default)")