I read another thread about how dlls files are used for massive programs and keep common functions in them, I would like to know how to:
get an exe to read from a dll
have normal text mode in the dll, like if I open it in note-pad I can easily read the code (not cyphered)



LinkBack URL
About LinkBacks



That means, they aren't linked at compile-time, but are accessed at run-time, and thus they need to be present on the computer that your exe is running on, at the time that your program is running.
I've never done it or tried, I just know that that's how they're supposed to work.