UltraLite ActiveX User's Guide
UltraLite ActiveX API Reference
ULDatabaseManager class
OnStateChange(
newState As ULSyncState, _
oldState As ULSyncState _
)
Member of UltraliteActiveX.ULDatabaseManager
This event is called whenever the state of the synchronization changes.
newState The state that the synchronization process is about to enter.
oldState The state that the synchronization process just completed.
' eMbedded Visual Basic Private Sub _OnStateChange(ByVal newState As Long, ByVal oldState As Long) prLine "OnStateChange new:" & newState & ", old: " & oldState End Sub