Hi i know this topic is kinda old, but i have a problem sending multiple files and i was hoping you could help me out, here's the code (i'm using vb.net):
Private Sub Send()
BFObjectPushClientX.OpenDevice()
If BFObjectPushClientX.Active Then
Try
For Each row As DataRow In _archives.Tables(0).Rows
BFObjectPushClientX.Put(My.Application.Info.DirectoryPath & "\" & K_FOLDER_CONTENT_TMP & "\" & row("Archive"))
_ws.ReportBluetoothDelivery(Password(), row("BuyId"), row("ItemId"), My.Settings.User)
Next
Catch ex As Exception
Dim oErr As New cError(ex)
_frmMsg = New frmMessage("Can't deliver all files", eMessageType.Info, False)
_frmMsg.ShowDialog()
End Try
Else
_frmMsg = New frmMessaje("Unable to connect", eMessageType.Info, False)
_frmMsg.ShowDialog()
End If
BFObjectPushClientX.Close()
End Sub
End Class
it only sends one file at the time.