VB Code:
'the varibales in the following udt should be replaced with you setting variables, for example. Play position, high score.....
Private Type MyType
setting1 as integer
setting2 as string * 10
setting3 as byte
End Type
'command button save
Dim settings As MyType
Open "C:\settings.set" For Binary Access Write As #1
Put #1, , settings
Close #1
'command button load
Dim settings As MyType
Open "C:\settings.set" For Binary Access Read As #1
Get #1, , settings
Close #1
'assign the values of the type to the game variables.
var1 = settings.setting1