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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sockets Prog in VB

Status
Not open for further replies.

crazydeveloper

Technical User
Apr 20, 2001
5
0
0
SG
hi,

pl. help me for finding the solution in Socket programming.


i am doing socket programming in VB (Server and Client running
in VB).

let me know how many bytes / bits can I send / receive from another port.


there is any limitation for sending and receiving the data in a Single request / send.


howmany ways can i send / receive the data from another machine / port.

at a time how many clients can connect (receive / send) to the Server. if multiple users sending request to Server through sockets how it handles ?


pl. let me know the site names , stuff related to Socket programming in VB.


Thanks in Advance
bye
 
Do a search on "Winsock" in this forum, and you should find several threads where this was discussed.

In general, VB is a good Winsock client. But it's not so hot as a Winsock server because of VB's single-threaded architecture. If you plan to write a high-performance Winsock server, you should be thinking about writing in C using multithreaded overlapped I/O calls.

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top