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

SQL Anywhere 11.0.1 (日本語) » Mobile Link - クライアント管理 » Mobile Link 用 SQL Anywhere クライアント » dbmlsync 統合コンポーネント (旧式) » dbmlsync 統合コンポーネントのイベント

 

BeginUpload イベント

BeginUpload イベントは、アップロード転送の直前にトリガされます。

構文
Public Event BeginUpload( )
Member of DbmlsyncCOM.Dbmlsync
備考

このイベントを使用して、Mobile Link サーバへのアップロード転送の直前にカスタム・アクションを追加します。

次に示す Visual Basic .NET の例は、BeginUpload イベントがトリガされたときにメッセージを出力します。

Private Sub dbmlsync1_BeginUpload()
Handles dbmlsync1.BeginUpload

        MsgBox("Begin Upload")

End Sub