Proc dialog is short for procedure dialog. A proc dialog follows a predefined sequence of steps:
1. Connect to the remote machine
2. Send data to the remote machine
3. Receive data from the remote machine
4. Disconnect from the remote machineTo a VA Smalltalk application, a proc dialog part behaves very much like the C and COBOL External Function parts, which are used to access functions residing in local DLLs. As with a local DLL function, a proc dialog communicates with the server program logic through a record, a formatted chunk of data that is both passed to and received from the server. When a VA Smalltalk application runs the proc dialog, it passes the proc dialog a single record, which can contain both input and output fields. When the function completes, the output fields are filled in with the function's result values. Refer to the VA Smalltalk User's Guide for more information on interfacing to DLLs.
![]() |