Occurs before the stored procedures in the open database are modified.
|
|---|
PROCEDURE dbc_BeforeModifyProc( ) |
Remarks
Example
| | Copy Code |
|---|
* Reports to the screen Event name, and where it is called from.
PROCEDURE dbc_BeforeModifyProc
? '>> ' + PROGRAM()
?? ' in ' + SUBSTR(SYS(16),RAT('\',SYS(16))+1)
? DBC()
RETURN .F. && prevents modification of stored procedures.
ENDPROC |
See Also