I'm working on a project, that now needs to store something. Since I added a value to the settings (right-click project --> properties --> settings) I'm unable to build the software. The Settings.Designer.vb
says a object reference is missing for My.Settings.Save()
. Until now everything worked fine. Can anyone help?
EDIT:
Okay, literally one minute after posting this question i got it fixed, by changing My.Settings.Save()
to My.Settings.Default.Save()
. Can anyone explain?