Is it possible from within an ACCESS program to dial a telephone number?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • WiboData
    New Member
    • Aug 2021
    • 2

    Is it possible from within an ACCESS program to dial a telephone number?

    Mailing is possible from ACCESS with "SendObject " and Outlook as an intermediate program.

    Is it also possible in access to call a telephone number that is stored in a field, eg by using a program such as MyPhoneExplorer as an intermediary. Then what is the command to use?
    can you show a sample program?
  • NeoPa
    Recognized Expert Moderator MVP
    • Oct 2006
    • 32661

    #2
    It is possible to interact with external programs from within VBA - Access or any other VBA-enabled application. Each of the many million possible external programs has its own API though, so you need to :
    1. Find a program that you'd like to use.
    2. Investigate its API to determine what is required in order to get it to do as you require.

    If it helps, though I have no direct experience with dialling phones from software, I'd be surprised if there weren't a viable option out there somewhere. Maybe MyPhoneExplorer even could be it.
    Originally posted by WiboData
    WiboData:
    Then what is the command to use?
    Until you get the preparatory work done that's not even a question that is possible to answer. It will depend on the API of the software you want to use. No-one here is an expert in PC-controlled telephony. We only help within the confines of the subject of the forum - This one is Access & VBA.

    You may get lucky & find someone with an overlap of the technology you need, but that would certainly be lucky.
    Originally posted by WiboData
    WiboData:
    can you show a sample program?
    No. Sometimes we do when the circumstances require it. We do try to avoid simply doing your work for you though. Instead we look to get you to the point where you are capable of doing your own work. Sometimes there's an overlap but that's very rare when a member starts by asking for it.

    See Application Automation for help with some general concepts for handling such stuff from VBA.

    Comment

    • isladogs
      Recognized Expert Moderator Contributor
      • Jul 2007
      • 483

      #3
      I've used Twilio for several years to send (and receive) both voicemail and text messages from Access.
      It can be setup to send messages to individuals or to groups of people at once.
      Would that fulfil your needs?
      However, that isn't the same as setting up telephone calls from Access which I've never needed to do

      Comment

      Working...