dialing a phone 
Author Message
 dialing a phone

Hello,

I'm busy creating a program that contains different phonenumbers.
I would like to program in a way that you can click on a name (or button)
and that the program automatically dials the number...
(And then you can pick up the phone and speak....)

any suggestions ?

Thanks !




Tue, 01 Jun 1999 03:00:00 GMT  
 dialing a phone

You can use the TAPI interface in Windows.  There is a single command that
will start the Windows dialer for you.



Quote:
> Hello,

> I'm busy creating a program that contains different phonenumbers.
> I would like to program in a way that you can click on a name (or button)
> and that the program automatically dials the number...
> (And then you can pick up the phone and speak....)

> any suggestions ?

> Thanks !





Wed, 02 Jun 1999 03:00:00 GMT  
 dialing a phone

Try this

' This next part is all ONE line
Private Declare Function tapiRequestMakeCall& Lib "TAPI32.DLL" (ByVal
DestAddress$, ByVal AppName$, ByVal CalledParty$, ByVal Comment$)

Private Sub Command1_Click()
    retval& = tapiRequestMakeCall&("5555", "", "Trey", "")

End Sub


Quote:
>Hello,

>I'm busy creating a program that contains different phonenumbers.
>I would like to program in a way that you can click on a name (or button)
>and that the program automatically dials the number...
>(And then you can pick up the phone and speak....)

>any suggestions ?

>Thanks !





Wed, 02 Jun 1999 03:00:00 GMT  
 
 [ 3 post ] 

 Relevant Pages 

1. How to get Access 97 to Dial the phone via code

2. dialing a phone with mscomm32.ocx

3. How can I dial a phone number?

4. Dialing the phone.

5. Dial a phone and play wav sound?

6. simple question about dialing a phone #

7. Question about dialing a phone from VB

8. How to dial a phone number with VB5

9. Dialing a phone number thru code with VB5

10. How to dial a phone # using TAPI

11. Dialing a phone # in VB4 32bit without MSCOMM.OCX

12. simply dialing a phone number...

 

 
Powered by phpBB® Forum Software