You can use the commondialog control for that. This allows the user to select a file for opening, saving and stuff. You will have to write the code to save/load yourself, it's only the looks you get.
You can customize it, by setting the caption of the control, specifying which files he should show, and some other things.
To use it, add the component to the project and place it on a form

CommonDialog1.DialogTitle = "Select file to open"
CommonDialog1.Filter = "Text Files|*.txt|All files|*.*"
CommonDialog1.ShowOpen

If CommonDialog1.FileName <> "" then
' do stuff to open it
End if




Tom Cannaerts
[email protected]

Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook