Occurs after a table or view is closed. There are two versions of the syntax.
|
---|
PROCEDURE dbc_AfterCloseTable(cTableName) |
|
---|
PROCEDURE dbc_AfterCloseTable
LPARAMETERS cTableName |
Parameters
-
cTableName
-
Specifies the name of the table or view being closed.
Remarks
Example
В | Copy Code |
---|
* Reports to the screen Event name, where it is called from and ;
* the parameter passed.
PROCEDURE dbc_AfterCloseTable ;
(cTableName)
? '>> ' + PROGRAM()
?? ' in ' + SUBSTR(SYS(16),RAT('\',SYS(16))+1)
? ' cTableName = ' + TRANSFORM(cTableName) + ' - ' ;
+ TYPE('cTableName')+' /end/ '
ENDPROC |
See Also