hii guy's .
Guy's i have a option of my app , when the user change the option i want
to save it for a next use i know it is save setting's but i want a code please ;)
Printable View
hii guy's .
Guy's i have a option of my app , when the user change the option i want
to save it for a next use i know it is save setting's but i want a code please ;)
You must search forum if you know what you are looking for.
Example by MartinLiss
Here is a very quick sample:
VB Code:
Option Explicit Private Sub Form_Load() Check1.Value = GetSetting(App.EXEName, "Options", "Check1", vbUnchecked) End Sub Private Sub Form_Unload(Cancel As Integer) SaveSetting App.EXEName, "Options", "Check1", Check1.Value End Sub