ok, I posted in the form wanting to know how to save the button click so that next time the user loads the program, the button is how the left it...

They used the SaveSetting and GetSetting functions to explain it, but when I do this...

Private Sub mnuAny_Click()
mnuAny.Checked = Not mnuAny.Checked
SaveSetting "Test", "Test Program", "thecheckvalues...", Check1.Value = True
End Sub

Private Sub Form_Load()
mnuAny.Checked = True = GetSetting("Test Program", "Test Program", "thecheckvalues", 0)
End Sub

I get "cant be set on this control" and I am using it on a menu...because thats what they used when telling me what to do... when I try to use this on the Check1.value = 1 statement...it wont work..

So I want to do this, but how?