Project.Build



Build(lMethod As tpBuildMethod) As Boolean

Parameters

lMethod As tpBuildMethod
A constant which defines the kind of compilation. tpAll = 0, tpIncremental = 1
ED
avaliable
RT
not used

Remarks

This method starts an rebuild of the runtime files, depending to given parameter all or only the changed files are created.


Sample:


Sub BuildRtFiles()
	'build only changed
	MyWorkspace.ActiveDocument.Build tpIncremental
	'build all
	MyWorkspace.ActiveDocument.Build tpAll
End Sub


See Also

Project