Xbasic

TableBegin 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 when a batch of updates is about to be processed for a table. This event is useful for displaying a progress/cancel dialog.

Example

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