October 31, 2025, 11:55:39 AM

News:

IonicWind Snippit Manager 2.xx Released!  Install it on a memory stick and take it with you!  With or without IWBasic!


ExceleTel Teletools

Started by ckoehn, February 19, 2010, 06:20:04 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ckoehn

I have an OCX from ExceleTel that I have used with VB6.  Is there a way to make it work with EBASIC?

http://www.exceletel.com/products/teletools.htm

Thanks,
Clint

LarryMc

LarryMc
Larry McCaughn :)
Author of IWB+, Custom Button Designer library, Custom Chart Designer library, Snippet Manager, IWGrid control library, LM_Image control library

ckoehn

Thanks for your reply Larry.  That looked a little deep for me.  It basically is a TAPI interface that has events attached to it and some special routines I think.  I'll dig around my system32 folder and see if there are any dll's.

Later,
Clint

Copex


posted by someone somewhere. not me.

' Demo on how to use the phone dialer via API
' http://msdn.microsoft.com/library/default.asp?url=/library/en-us/mobilesdk5/html/mob5conTelephonyAPITAPI.asp
'
' Ibasic pro code
' before you can run this program you need to make an inport library for TAPI32.DLL
' (menu Tools, create import library. then select "TAPI32.DLL")

$USE "tapi32.lib"

DECLARE IMPORT, tapiRequestMakeCall(Dest:STRING,AppName:STRING,CalledParty:STRING,Comment:STRING), Int

DEF sPhoneNum,sTitle,sBuddy,sComment:STRING
sPhoneNum = "555-5555"
sTitle = "Personal Phone book"
sBuddy = "Pizza Palace"
sComment = "No Anchovies!"

' a return <> 0 indicates a failure
res = tapiRequestMakeCall(sPhoneNum, sTitle, sBuddy, sComment)
-
I really should learn how to use a spell checker! though im not sure how it will help someone who can not spell?
-
Except where otherwise noted, content Posted By Copex is
licensed under a Creative Commons Attribution 3.0 License

http://creativecommons.org/licenses/by/3.0/

ckoehn

Thanks for your help.  The thing I really liked about ExceleTel was you could point MS Text-to-Speech engine to that line and play TTS to the phone as well as accept DTMF digits.

Later,
Clint