as some of you may know, osc_x is a control somewhat like winsock. It lets you connect to aim and send and get IMs. For some reasone though, I can't get the message, only the name of the person who's sending it. What am I doing wrong?
VB Code:
  1. Private Sub aimSock_buddySignedOn(strName As String, strCapabilities As String)
  2. lstOnline.AddItem (strName)
  3. End Sub
  4.  
  5. Private Sub aimSock_incomingIM(strName As String, strMessage As String)
  6. txtIMIn.Text = "[" & strName & "] " & strMessage & vbNewLine & txtIMIn.Text
  7. End Sub
  8.  
  9. Private Sub aimSock_loggedIn(strFormattedName As String, strEmailAddy As String)
  10. MsgBox strFormattedName & " Logged On"
  11. End Sub
  12.  
  13. Private Sub cmdIMSend_Click()
  14. If txtIMUsername.Text = "" Then
  15. MsgBox "You must enter a screen name first!"
  16. Else
  17. aimSock.sendIM txtIMUsername.Text, txtIMOut.Text, False
  18. txtIMIn.Text = "[" & txtIMUsername.Text & "] " & txtIMOut.Text & vbNewLine & txtIMIn.Text
  19. End If
  20. txtIMOut.Text = ""
  21. End Sub
  22.  
  23. Private Sub mnuFileOut_Click()
  24. aimSock.SignOff
  25. End Sub

any help is needed and welcome