Question:

How to create a raw socket connection in Visual Basic 6.0 ?

by  |  earlier

0 LIKES UnLike

It should be the socket connection implemented by the following java code:

int port = 8080;

java.net.ServerSocket srvSkt = new java.net.ServerSocket(port);

java.net.Socket skt = srvSkt.accept();

and please tell me how to make use of it. (I/O)

Thanks.

 Tags:

   Report

1 ANSWERS


  1. VB6 does not allow Raw Socket.

    : )

Question Stats

Latest activity: earlier.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.