execUpdate(<list of back data writer>)

This function run back data writers.

Example:

1 Private Sub cmdUpd_Click()
2 Dim oAdd As Object
3 Set oAdd = Application.COMAddIns("ESClient.Connect").Object
4 If oAdd.execUpdate("customer") = True Then
5 MsgBox "customer does"
6 End If
7 Set oAdd = Nothing
8 End Sub