ReferenceProject Statement

Syntax

ReferenceProject "projectpath"

Group

Project

Description

This project statement indicates that "projectpath" is referenced.

Sandbox

Sandboxing restricts "projectpath" to the same directory or sub-directory.

Parameters

Parameters Description
"projectpath" Public symbols in this project are accessible by all other modules in the project.

Example


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