tags:

views:

203

answers:

1

followin error in vb6 code:

1) Error(10022) Socket not bound, invalid address or listen is not invoked prior to accept

2) Error 10048 - Address in Use

+1  A: 
  • Error #1 occurs when you haven't bound your TCP control to a port, but called .Listen method

  • Error #2 occurs when you attempted to listen on a port that is already being listened to by another program or process.

AngryHacker