Contents Index OnStateChange event OpenConnection method

UltraLite ActiveX User's Guide
  UltraLite ActiveX API Reference
    ULDatabaseManager class

OnTableChange event


Prototype 

OnTableChange(
   newTableIndex As Long, _
   numTables As Long _
)
Member of UltraliteActiveX.ULDatabaseManager

Description 

This event is called whenever the synchronization process begins synchronizing another table.

Parameters 

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.

Example 
' eMbedded Visual Basic
Private Sub _OnTableChange(ByVal newTableIndex As Long, ByVal numTables As Long)
    prLine "OnTableChange index:" & newTableIndex & ", #tables=" & numTables
End Sub

Contents Index OnStateChange event OpenConnection method