I don't think is possible but I just wanted to check if someone knew better. Basically, I don't want to store a sub-routine in the code itself but in a text file and then, I guess, import that and have it run as if it were a sub-routine.
So, the file would look like this:
Private Sub AutoRunsWinsockProvidersTranslation()
AutoRuns.AutoRunsWinsockProviders(Me)
AutoRuns.AutoRunsWriteData(True, "Winsock Providers")
End Sub
And it would be saved as, say, AutoRunsWinsock.txt. I want to know if I could import that somehow at run-time and then reference that sub-routine name or not. I suspect the answer is no but want to check.
The reason for this, by the way, is that then I could write a lot of txt files for different bits I'd want out of my other code without having to include them all before publishing the app.