Small company logo:
   History
 
Advertising banner:
 
 Spawn
Home • Help • Customization Tools • FCAS • Language Reference • Spawn
 
Purpose
Runs a process or application on the FirstClass server.
Syntax
Spawn (ApplicationName [fcWait | fcNoWait])


ApplicationName
A text string that is the application name to be executed, including any command line arguments.
fcWait
A constant that tells the application to wait until the called process has completed (synchronous; can block the FirstClass server).
fcNoWait
A constant that tells the application to launch the called process and continue executing (asynchronous; never blocks the FirstClass server).

Example
Spawn ("C:\Acrobat3\Reader\AcroRd32.exe", fcNoWait) 'launches a program on the server and immediately resumes processing the application'
End Sub