Hi,

How do I detect the end of a response to a "list" command to a nntp server using winsock?

The list is quite long and the response does not come all at once. I need to know when does the response end so that I could prepare for the next incoming message whatever it may be.

I tried
If InStr(Received, vbLf & ".") Then
isList = False
End If
but it didn't work.

Please help.

Thanks in advance.