CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2008
    Posts
    53

    creating a chat application

    I am an undergrad Computer Science student working with a company as part of my education. My boss wants me to investigate what it would take to implement text chat into one of our applications. The problem is I know nothing about network programming, or even where to start on this. The good news is the application we want to add this functionality to is a VoIP voice communication application that can make unicast and multicast calls, so the program is already capable of connecting to the internet and can send and receive packets from other users. I could probably modify the gui interface to include a textfield you can type into and send to one of your contacts, but I just don't know a thing about network programming, or socket programming, and how you would break the data up into packets and set it accross, or whatever.

    So if someone can just point me in the right direction and tell me what it is i need to know about to do this, and where I could best learn it, I would very much appreciate that!

  2. #2
    Join Date
    May 2006
    Location
    Indonesia & Japan
    Posts
    399

    Re: creating a chat application

    Not sure what kind of tools you have.
    If you want to know how to sending/receiving data through network,
    you need to read some books about network programming first.
    henky
    ----------------------------------
    [email protected] is not my email address anymore...
    Jangan Pernah Menyerah

  3. #3
    Join Date
    Dec 2009
    Posts
    3

    Re: creating a chat application

    Theres no other place to begin than beej's guide:
    http://beej.us/guide/bgnet/

    Afterwards you can browse the codeproject website for some examples. If the program is for Windows then you'll most definitely need to take a look at the MSDN documentations as a resource.

    regards,
    blaquee

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