Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Call Waiting Caller ID

Status
Not open for further replies.

TLowder

Programmer
Joined
Mar 20, 2002
Messages
224
Hello,
I'm able to get MSComm to work fine for normal caller ID with the following lines of code.
Code:
Form_Load()
  MSComm1.PortOpen = True
  MSComm1.Output = "at+VCID=1" + Chr(13)
End Sub

Private Sub MSComm1_OnComm()
If MSComm1.CommEvent Then
   Text1 = Text1 & MSComm1.Input & vbNewLine
End If
End Sub

The problem is once the line is in use, the call waiting caller id doesn't work. I'm also going to need to get this working on a line with multiple lines. I haven't begun to even test this setup but just thought it might make a difference with your suggestions. It might be I need to purchase one of these devices here -
Thanks for you help,

Tom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top