Our office has just purchased and is installing a NEC phone system that will allow users to make calls from out of Outlook. I have no idea how it gets this done. I have an Access database that has contacts with phone numbers. I would like to be able to use the phone system from Access or through Outlook. Any suggestions?
Microsoft Access
Last Comment
JArndt42
8/22/2022 - Mon
Jeffrey Coachman
Are you quite sure the NEC Phone is capable of doing this with MS Access?
Do you have the software?
Have you tried contacting NEC?
It would seem that if NEC sold you the phone(s), they would be the best resource to tell you how to get this all working...
In any event, ...this was possible in older versions of Access, not sure about more current versions though...
See here: http://support.microsoft.com/kb/148857
JeffCoachman
IrogSinta
We also have an old NEC system at work and supposedly they have an API so that you could control it via code but we couldn't find the API. However, if you're system is new, as Jeff said, you should be able to contact NEC for support. In our case, we just did a workaround by having the NEC softphone running, adding a label to a form, and running code similar to this:
Dim numToCall As String numToCall = "5012" 'extension to call Me.lblPhoneNum.Hyperlink.Address = "callto:" & numToCall Me.lblPhoneNum.Hyperlink.Follow
...I'll leave this question to you, as I only posted what little info I had seen on this topic.
Jeff
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23
JArndt42
ASKER
Thank both of you. The phones are not plugged into each computer. They are all going to a NEC phone server and from there I have to assume they connect to the mail server. This may be way outside the scope of Access. I was just assuming that because it will call a contact in MS Outlook that it would be somewhat simple to get it to call a contact using MS Access.
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.
Do you have the software?
Have you tried contacting NEC?
It would seem that if NEC sold you the phone(s), they would be the best resource to tell you how to get this all working...
In any event, ...this was possible in older versions of Access, not sure about more current versions though...
See here:
http://support.microsoft.com/kb/148857
JeffCoachman