|
-
Nov 7th, 2000, 10:15 PM
#1
Thread Starter
Lively Member
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?
-
Nov 9th, 2000, 03:50 PM
#2
Lively Member
what do you mean?
Are you trying to build some type of Internet Server?
-
Nov 9th, 2000, 08:14 PM
#3
Member
I know that it is. I have read about doing similar things, but I can't tell you how.
-
Nov 9th, 2000, 11:52 PM
#4
Addicted Member
Code:
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 :-).
Brian
Programming: VB5 Pro (SP3) - QBasic 1.1,4.5
Internet: HTML 4, CSS, JavaScript
Visit AltInt.com!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|