Xbasic

TableEnd Function

Syntax

TableBegin(Context as P, Action as C, TableName as C)

Arguments

ContextPointer

The object on which the function is called (generally a DatabaseSnapshot object)

ActionCharacter

The action being performed. Will be one of the following values: Load, Store, LoadDBF, or StoreDBF.

TableNameCharacter

The name of the table being updated.

Description

Called at the end of processing for a table level update.

Example

FUNCTION TableEnd(Context as P, Action as C, TableName as C)
    Statusbar.Set_Text("Table " + Action + " complete for table " + TableName)
END FUNCTION