I made a windows forms application using vb.net and I'm using My.Settings to save some of the application settings (such as product keys and activation status)
Everything was working just fine until I found out that some computers for some reason keeps deleting My.Settings after the application has been closed for some time. I mean, I connect to the computer (using AnyDesk or another remote connection software) and notice the application is closed; open it and everything is gone; I set it all up again; Close and reopen de application; everything looks fine but in a week the same thing.
I found it kinda strange because on some computers it works OK but in some others, it just doesn't. Of course, I made sure to check the "Save My.Settings at exit" and also save it manually with code. It kinda looks like this:
Public Sub SaveSettings()
'Some code from all the app settings here.
My.Settings.Save()
End Sub
Is it a Windows configuration or something? Should I build my own settings file instead of using My.Settings? Help :(