Someone asked me if I knew how to make Dell dial a phone number??? Has anyone ever heard of this? How would I make this happen? Can someone explain the logic and functionality?
Someone asked me if I knew how to make Dell dial a phone number??? Has anyone ever heard of this? How would I make this happen? Can someone explain the logic and functionality?
I'm sorry, Excel not Dell. Happy Friday! :-)
Hi msjoy, it seems that this is possible. See this link to find out more.
If you're happy with someone's help, click that little star at the bottom left of their post to give them Reps.
---Keep on Coding in the Free World---
Welcome to the forum.
I haven't used this in years, and don't intend to revisit it, so you're on your own:
![]()
' 1. Download MSCOMM32.OCX to WINDOWS/System32 folder ' 2. From a command line, ' > regsvr32 c:\windows\system32\mscomm32.ocx ' 3. Add a reference to Microsoft Comm Control Declare Function tapiRequestMakeCall _ Lib "tapi32.dll" _ (ByVal stNumber As String, ByVal stDummy1 As String, _ ByVal stDummy2 As String, ByVal stDummy3 As String) As Long Sub Test() DialNumber ("9725551212") End Sub Sub DialNumber(sPhoneNumber As String) If MsgBox("Pick up the phone and click OK to dial " & sPhoneNumber, _ vbInformation + vbOKCancel, "Dial Number") = vbOK Then If tapiRequestMakeCall(sPhoneNumber, "", "", "") < 0 Then MsgBox "Unable to dial", vbCritical, "Error!" End If End If End Sub
Entia non sunt multiplicanda sine necessitate
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks