Computer Science Canada VB Chat program Help |
Author: | CDawg [ Wed May 14, 2008 10:12 am ] |
Post subject: | VB Chat program Help |
Hi everyone, My friend and I are working on a chat program in Visual Basic and we have been able to get it working so far with two people, however we cannot seem to get the server to accept more than one client. Any help in the form of an online tutorial or sample code would be greatly appreciated. Thanks |
Author: | jaxon [ Sun May 25, 2008 12:02 am ] |
Post subject: | RE:VB Chat program Help |
try udp protocol |
Author: | btiffin [ Sun May 25, 2008 2:52 am ] |
Post subject: | RE:VB Chat program Help |
Follow this link; http://www.vb6.us/source-code/advanced-multiple-client-server-using-winsock-control which has source code and a link to this tutorial http://www.vb6.us/tutorials/multiple-client-server-chat-program-using-winsock-control Cheers |
Author: | CDawg [ Wed May 28, 2008 5:32 pm ] |
Post subject: | Re: VB Chat program Help |
nice that stuff helped a lot. Thanks! |
Author: | r691175002 [ Wed May 28, 2008 5:36 pm ] |
Post subject: | Re: RE:VB Chat program Help |
jaxon @ Sun May 25, 2008 12:02 am wrote: try udp protocol I would suggest against UDP for a chat program. It does not guarantee delivery and a chat program is not really the most time critical situation. |