Solved phone call via phone bluetooth

eshai

Registered User.
Local time
Today, 06:27
Joined
Jul 14, 2015
Messages
195
Hello friends
I'm trying to dial from Access via the phone to computer link with a Bluetooth connection
I couldn't find a solution
But I found a software https://www.justremotephone.com/ which has a DLL extension for the Access library
If anyone has a simple solution how to dial from Access only by Bluetooth like in a car
Thanks in advance
 
Ok, I solved it in a different way, for anyone who is interested, it works with Windows phonelink
Guide: Create a button and write the following code
Code:
Private Sub Commanddial_Click()
 CreateObject("Shell.Application").Open "tel:" & Me."phone_field"
End Sub
A window will open to select an application, select phonelink, the application will open and the number will be copied to dial
You can add a 5 second wait command and then another command to send keys for Automatic dialing

Hope this helps someone
 

Users who are viewing this thread

Back
Top Bottom