Jump to content
infinitejl

scar as background program..

Recommended Posts

You create a file named for example "include.scar", you place that either in the Includes folder or in the same folder as your script. In that file you place the code you want to include, for example:

 

[scar]procedure LoadDTMs;

begin

// Load DTMs here

end;[/scar]

 

Then in your script file you add "{$I include.scar}", wherever you want to have SCAR place the contents of include.scar in your script, for example:

[scar]{$I include.scar}

 

begin

LoadDTMs;

end.[/scar]

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
  • Create New...