|
|
|
If TAPI libraries are installed on your machine, you can easily dial a number from a VB application using a single API call. Here's a function that encapsulates the call and that returns True if the dialing was successful: |
Click here to copy the following block | 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
Function PhoneCall(ByVal PhoneNumber As String, ByVal DestName As String, _ Optional ByVal Comment As String) As Boolean If tapiRequestMakeCall(Trim$(PhoneNumber), App.Title, Trim$(DestName), _ Comment) = 0 Then PhoneCall = True End If End Function |
This code works on Windows 95, Windows 98, Windows NT 4 SP3 or later, and Windows 2000, and requires TAPI 1.3 libraries or a later version.
|
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|