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