UltraLite ActiveX User's Guide
UltraLite ActiveX API Reference
ULDatabaseManager class
OnTableChange(
newTableIndex As Long, _
numTables As Long _
)
Member of UltraliteActiveX.ULDatabaseManager
This event is called whenever the synchronization process begins synchronizing another table.
newTableIndex The index number of the table currently being synchronized. This number is not the same as the table ID, and so it cannot be used with the ULDatabaseSchema.GetTableName method.
numTables The number of tables eligible to be synchronized.
' eMbedded Visual Basic Private Sub _OnTableChange(ByVal newTableIndex As Long, ByVal numTables As Long) prLine "OnTableChange index:" & newTableIndex & ", #tables=" & numTables End Sub