INotifyUpdate
By implementing in the class by which IVVForm was defined, you can notice update of a database.
void NotifyUpdate(UpdateType type, FirebirdTable table, object[] param);
Occurs when a update notice is received.
type
Contents which updated.
table
Table which updated.
param
Details of the updated item. This differs in the argument contained with the value of type. If it is values other than these, arguments does not exist.
- UpdateType.InsertCard
param[0] : The number of the target card. - UpdateType.UpdateCard
param[0] : The number of the target card. - UpdateType.DeleteCard
param[0] : The number of the target card. - UpdateType.UpdateTable
param[0] : The alias of the table before being updated*1. - UpdateType.AttachTable
param[0] : The related parts name.
param[1] : The related table class. - UpdateType.DetachTable
param[0] : The unrelated parts name.