UltraLite ActiveX User's Guide
UltraLite ActiveX API Reference
ULDatabaseManager class
OnReceive(
nBytes As Long, _
nInserts As Long, _
nUpdates As Long, _
nDeletes As Long _
)
Member of UltraliteActiveX.ULDatabaseManager
Reports download information to the application from the consolidated database via MobiLink. This event may be called several times.
nBytes Cumulative count of bytes received.
nInserts Cumulative count of inserts received at the remote application from the consolidated database.
nUpdates Cumulative count of updates received at the remote application from the consolidated database.
nDeletes Cumulative count of deletes received at the remote application from the consolidated database.
'eMbedded Visual Basic Private Sub OnReceive(ByVal nBytes As Long, ByVal nInserts As Long, ByVal nUpdates As Long, ByVal nDeletes As Long) prLine "OnReceive " & nBytes & " bytes, " & Inserts & " inserts, " & nUpdates & " updates, " & nDeletes & " deletes" End Sub