OK, this is not exactly the most elegant code in the world but I am just trying to get you started.
Private Sub Command1_Click() 'Save Button
Dim fso As New FileSystemObject
Dim s As TextStream
Dim sPath As String
sPath = App.Path & "\" & txtName.Text & ".txt"
Set s = fso.CreateTextFile(sPath)
s.WriteLine Text1.Text
s.WriteLine Check1.Value
s.WriteLine Option1.Value
s.WriteLine Option2.Value
Set s = Nothing
Set fso = Nothing
End Sub
Private Sub Command2_Click() 'Load Button
Dim fso As New FileSystemObject
Dim s As TextStream
Dim sPath As String
sPath = App.Path & "\" & txtName.Text & ".txt"
Set s = fs

penTextFile(sPath)
Text1.Text = s.ReadLine
Check1.Value = s.ReadLine
Option1.Value = s.ReadLine
Option2.Value = s.ReadLine
Set s = Nothing
Set fso = Nothing
End Sub
You may want to add some more fields etc etc so you can see exactly what it is doing. Make sure you remember the names of the files you would like to use (I saved with names) as there is no error checking. You may want to use a common dialog box to get the path of the file. I just did not have enough time. Hopefully this will get you started. If you have more questions let me know. Good Luck.
If you choose to battle wits with the witless be prepared to lose.
![[machinegun] [machinegun] [machinegun]](/data/assets/smilies/machinegun.gif)
![[hammer] [hammer] [hammer]](/data/assets/smilies/hammer.gif)