There is a Sample that comes with VB called "Dialer"<br>
here is a little code to start.<br>
----------------------------------------<br>
Number$ = "555-1212"<br>
DialString$ = "ATDT" + Number$<br>
' Communications port settings.<br>
MSComm1.CommPort = SerialPort ' this is gotten from the Command line<br>
MSComm1.InputLen = 0<br>
MSComm1.Settings = "300,N,8,1"<br>
' Flush the input buffer.<br>
MSComm1.InBufferCount = 0<br>
<br>
' Dial the number.<br>
MSComm1.Output = DialString$<br>
<br>
' Wait for "OK" to come back from the modem.<br>
Do<br>
dummy = DoEvents()<br>
<br>
' If there is data in the buffer, then read it.<br>
If MSComm1.InBufferCount Then<br>
FromModem$ = FromModem$ + MSComm1.Input<br>
'Debug.Print FromModem$<br>
End If<br>
Loop<br>
<br>
' Disconnect the modem.<br>
MSComm1.Output = "ATH" + Chr$(13)<br>
<br>
' Close the port.<br>
MSComm1.PortOpen = False<br>
----------------------------------------<br>
<br>
I know how to dial and so forth not how to send voice though.<br>
What do you want to do? Play .WAV files or Talk over it. <p> DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br>