CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    17

    How can i send text over the network

    Hy!

    I want to send a simple text over the network.
    A client sends a text over the network and a other client in the network receives this text
    (like a chat-programm).

    How can i do this?

    Thanks
    Robert Schardl
    [email protected]


  2. #2
    Join Date
    May 1999
    Posts
    69

    Re: How can i send text over the network

    There are lots of ways to do this. If you're after a chat like program (i.e. both machines interact simultaneously) you can use Sockets or Named Pipe code.

    Dig out the CHATTER and CHATSVR samples on MSDN for a Winsock based Chat solution.

    If you're looking for asynchrounous communication, you can't get any easier than a MailSlot API based solution.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured