What are the ANNOUNCE and REQUEST statements?
(Answer supplied by Doug Lee.) REQUEST is used to force functions, procedures, and modules to be linked into an application whether or not they are referenced directly. REQUEST officially replaces the EXTERNAL statement provided in versions of Ca-Clipper prior to 5.2. Functions and procedures are linked into an application automatically if they are referenced directly in the source code or if they are located in .OBJ files which are explicitly listed in the link script. However, if a function is not referenced until run time and is to be drawn from a library, it must be REQUESTed. Examples of this include INIT and EXIT procedures, functions and procedures referenced only from within index expressions or report forms, and MEMOEDIT user functions. If you have a report form which calls MEMOTRAN and your application makes no further reference to that function, you must include the line REQUEST MEMOTRAN in one of your source files. ANNOUNCE is used to name modules for REQUESTing. By using A