You may also store settings into the registry
i know that's what i'm supposed to do, but i'm not exactly sure how to do it. if anyone could show me how, it would be greatly appreciated. Thanx ToNy Hwk
Hello Hawk! Look up these properties in the help. I will give you some pretty self explanatory examples. GetSetting GetAllSetting DeleteSetting SaveSetting Good Luck
Chemically Formulated As: Dr. Nitro
This will save check1.value int registry Code: SaveSetting App.Title, "Settings", "Check1value", check1.value And this will load check1.value from registry Code: Check1.value = GetSetting(App.Title, "Settings", "Check1value", 1000) check1.value
SaveSetting App.Title, "Settings", "Check1value", check1.value
Check1.value = GetSetting(App.Title, "Settings", "Check1value", 1000) check1.value
Forum Rules