PDA

Click to See Complete Forum and Search --> : AutoDialer?


Kurzo
Nov 7th, 2000, 09:15 PM
Can you use the autodialer function along with a telephone plugged into the computer to make phone calls?
I can get the computer to dial the number, but is there a way to connect that connection to a telephone?

Brandito
Nov 9th, 2000, 02:50 PM
Are you trying to build some type of Internet Server?

glotzbam
Nov 9th, 2000, 07:14 PM
I know that it is. I have read about doing similar things, but I can't tell you how.

bbosh
Nov 9th, 2000, 10:52 PM
OPEN "COM1:9600,8,N,1" FOR RANDOM AS #1 LEN=LEN(256)
PRINT #1, "ATDT"
PRINT #1, "555-1212" ' Not my number
PRINT "PRESS SPACE WHEN YOU HAVE PICKED UP THE RECIEVER."
DO WHILE INKEY$ <> " ": LOOP
PRINT #1, "ATH"
CLOSE #1

That should work, but I did not test it.

Sorry for the cross posts. I hit the wrong button :-).