|
View Message | Back to Messages |
Plasma Sat Jan 19 2008 at 9:27 am The OBJ is the object file
This file is created by the compiler and then linked to make the final EXE. The compilation process is hidden by the IDE, but what's really happening is:
QB -> source -> BC -> object file -> LINK -> executable
BC is the actual compiler, and LINK is the linker. When you have the final EXE you can delete the OBJ file; it is no longer needed.
|
|