Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link Par2: Full Build templates 1999-08-17 -- Krsitian Hyllestad If you're interested, here are two "rough" code templates doing
fullbuilds.
#CODE (FullBuild, 'Fullbuild
(Close/Build/checkopen)'),DESCRIPTION('FULLBUILD: ' & %Target)
#PROMPT ('File:',FILE),%Target
Status# = STATUS(%target)
IF Status# > 0
CLOSE(%target)
END
SEND(%Target,'FULLBUILD=on')
SETCURSOR(CURSOR:WAIT)
OPEN(%target,ReadWrite+DenyAll)
BUILD(%target)
SETCURSOR
IF ErrorCode() THEN Message('Fullbuild error: '&ERROR()).
IF Status# > 0
Open(%Target,Status#)
END
#CODE (FullBuildOnly, 'Fullbuild, no opening'),DESCRIPTION('FULLBUILD
only: ' & %Target)
#PROMPT ('File:',FILE),%Target
SEND(%target,'FULLBUILD=on')
SETCURSOR(CURSOR:WAIT)
BUILD(%target)
SETCURSOR
IF ErrorCode() THEN Message('FULLBUILD %target ERROR: '&ERROR()).
Today is November 23, 2024, 2:17 am This article has been viewed 35320 times.
|
|