LoadModule Statement

Syntax
LoadModule "modulepath"
Group
Project
Description
This project statement indicates that "modulepath" is a member of the project.
A '#Language comment in the project defines the language for all modules in the project.
Sandbox
Sandboxing restricts "modulepath" to the same directory or sub-directories.
Parameters Description
"modulepath" Public and Friend symbols in this module are accessible by all other modules in the project.

Project Project1
    Optimizer On
    EntryPoint Main
    LoadModule "main.bas"
    LoadModule "module1.bas"
End Project