6.0

Table Of Contents
107
endfor()
IntToStr (function)
Converts an integer expression into a string value.
Syntax
inttostr( expression ) string value
Argument
expression — Integer value to be converted.
Code Sample Example
This example prints the iterations of a loop.
Example
define(&x,integer,1)
%Define loop variable
for(&x,1,1,10)
%Set up loop
show('Iteration ' + inttostr(&x) )
%Show text
crlf()
%Skip line
endfor()
InStream... EndInStream (procedure)
Ceate an alias for a resource file (image, data file, attachment, etc.). You can then reference the resource
file using the alias instead of the path. This eliminates the need to repeat a path in more than one place in
your code, and thus makes your code easier to maintain. For example, if you change the resource, you need
only modify the path in the instream() command, rather than everywhere you reference the original
resource.
Note: You cannot use the instream() command inside any function you define using function @name().
Syntax
instream external resname