Contents Index DropDatabaseWithParms method OnSend event

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

OnReceive event


Prototype 

OnReceive(
   nBytes As Long, _
   nInserts As Long, _
   nUpdates As Long, _
   nDeletes As Long _
)
Member of UltraliteActiveX.ULDatabaseManager

Description 

Reports download information to the application from the consolidated database via MobiLink. This event may be called several times.

Parameters 

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.

Example 
'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

Contents Index DropDatabaseWithParms method OnSend event