<< back to sysax.com Product page

6.3. Verifying Synchronization

The IsSyncSuccess method can be used to determine if a synchronization operation initiated by the SyncRun or SyncRunV methods was successful.

Exhibit 6.5. IDL Definition of method to verify synchronization


HRESULT IsSyncSuccess    ([out, retval] VARIANT_BOOL *f_is_success);


Exhibit 6.6. Example usage of method to verify synchronization (VBScript)


'check if the sync operation was successful
If app.IsSyncSuccess Then
  'sync was successful
End If