I’m making an installer that needs to have information stored inside the exe itself.
I cannot use my.settings because it is stored outside the application and if it is changed and the exe is moved to another computer it will reset to default.
And I cannot use resources since I cannot add/edit resources after the application is build.
Is there any way I can store and change info even if the application is moved to another location?
Thanks for any help,
I solved it.
This code allowed me to add information to the end of the exe file without corrupting it.
and then just read the last line with read line code within the program.