Is it possible to make a text file or separate class file that could be imported as lines of code. e.g. I have this simple line of code:
Dim x = 0
messagebox.show(x)
Import(text file or other file)
'run the code from the other file
'resume code in this file
X = X + 1
Is it possible to do this instead of getting a new .exe file with the code changes.
I am trying to have a .exe file that a bunch of my users have and then have an external code file that the .exe grabs and uses as code.