Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (中文) » MobiLink - 客户端管理 » 用于 MobiLink 的 SQL Anywhere 客户端 » Dbmlsync 集成组件(不建议使用) » Dbmlsync 集成组件的事件

 

BeginUpload 事件

在即将开始传输上载时,会触发 BeginUpload 事件。

语法
Public Event BeginUpload( )
Member of DbmlsyncCOM.Dbmlsync
注释

可以使用此事件在上载即将开始传输到 MobiLink 服务器时添加自定义操作。

示例

下面的 Visual Basic .NET 示例在触发 BeginUpload 事件时输出一条消息。

Private Sub dbmlsync1_BeginUpload()
Handles dbmlsync1.BeginUpload

        MsgBox("Begin Upload")

End Sub