#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Telephony

I am interested in being able to convert a text string in a cell in Excel to it's telephony counterpart and send those tones. I would like to do this inside Excel with some sort of VB interface. I have no telephony programming experience. Does anyone know of any canned freeware or other good places for me to start?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Telephony

Are you a telemarketer? Please say you're not a telemerketer and tha
the information will not be used for evil. - Piku

--
Message posted from http://www.ExcelForum.com

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Telephony

I am not a telemarketer. I actually work for a prosecutors office in the Commonwealth of KY. On a regular basis our office is required to check the prisoner status of prisoners across the state. This is done by beating the names of the prisoners into the phone until you cramp. I thought that excel could do this for me if the prisoners name, Last Name, First Name, was in a spread sheet and then those alphabetic characters could be converted to telephony tones. Any ideas where to start?
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Telephony

At a previous job we had something that let us call up and controll ou
servers via phone and I remember the conversation included talk of a
actual physical component that had to be installed that allowed th
computer to understand/produce phone sounds. While I don't have an
particular knowledge of that type of hardware, I'm sure that there ca
be no answer to how to access it via VBA/Excel without knowing abou
the software it uses. I'd start your search looking for the hardwar
and maybe cantact the manufacturer with your questions about how t
execute your plan. Sorry I couldn't be more help. Good luck. - Piku

--
Message posted from http://www.ExcelForum.com

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 94
Default Telephony

Give this a try. It will dial your phone via the modem.

Troy

Private Declare Function tapiRequestMakeCall Lib "TAPI32.DLL" _
(ByVal Dest As String, _
ByVal AppName As String, _
ByVal CalledParty As String, _
ByVal Comment As String) As Long

Sub PhoneCall(sNumber As String, sName As String, sComment As String)
Dim lRetVal As Long
lRetVal = tapiRequestMakeCall(Trim$(sNumber), "", Trim$(sName), sComment)
'Microsoft Phone program will appear and start dialing.
If lRetVal < 0 Then
'Couldn't connect the call.
End If
End Sub

Sub Test1()
PhoneCall "5551212", "Individuals Name", "Any note you want to include"
End Sub


"hmckee121" wrote in message
...
I am interested in being able to convert a text string in a cell in Excel

to it's telephony counterpart and send those tones. I would like to do this
inside Excel with some sort of VB interface. I have no telephony programming
experience. Does anyone know of any canned freeware or other good places for
me to start?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 11:29 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"