CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 15

Hybrid View

  1. #1
    Join Date
    Mar 2012
    Posts
    99

    please help with client server program in MFC

    I need to create a TCP/IP program using visual studios MFC that displays all client's IP addresses that are connected to the client.
    The MFC application just has a list box and a button. The client can be a simple console application.
    When the button is clicked, the list box gets populated with all ip addresses of connected clients.

    This is probably really simple for anyone who knows how to do it but i have never used MFC before and i can't find any basic tutorials/source code

    please help me with this
    Last edited by beginner91; March 12th, 2013 at 09:07 AM.

  2. #2
    VictorN's Avatar
    VictorN is online now Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: please help with client server program in MFC

    Well, what you need is an MFC CAsyncSocket class.
    You could also look at this essay about MFC Asynchronous Socket Example
    Note that for your current task you will need only a small part of this example (and only its server part)
    Victor Nijegorodov

  3. #3
    Join Date
    Mar 2012
    Posts
    99

    Re: please help with client server program in MFC

    sorry that essay didn't really help

  4. #4
    VictorN's Avatar
    VictorN is online now Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: please help with client server program in MFC

    Quote Originally Posted by beginner91 View Post
    sorry that essay didn't really help
    And what did you mean under "really help"?
    Did you implement this code? Did you test it? Have you understood how it works?
    Did you read about CAsyncSocket class in MSDN?
    Victor Nijegorodov

  5. #5
    Join Date
    Mar 2012
    Posts
    99

    Re: please help with client server program in MFC

    no i did not implement this code because this example is not what i want my program to do

  6. #6
    VictorN's Avatar
    VictorN is online now Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: please help with client server program in MFC

    Quote Originally Posted by beginner91 View Post
    no i did not implement this code because this example is not what i want my program to do
    But it does exactly what you asked in your thread subject: "... client server program in MFC"

    Besides, like I wrote you:
    Quote Originally Posted by VictorN View Post
    Note that for your current task you will need only a small part of this example (and only its server part)
    Victor Nijegorodov

  7. #7
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: please help with client server program in MFC

    Quote Originally Posted by beginner91 View Post
    no i did not implement this code because this example is not what i want my program to do
    Sometimes you have to take other code that may be similar and adapt it to your own use. Hoping to find already written code that does exactly what you want isn't a reasonable expectation. If you've never used MFC before, you may want to work through a book or tutorial to get up to speed on it as Windows programming, even with MFC is a pretty complex subject.

  8. #8
    Join Date
    Mar 2012
    Posts
    99

    Re: please help with client server program in MFC

    actually i found some really good source code from this website: http://www.softwareandfinance.com/Vi...nt_Server.html

    its code for a basic client server program. the client can send messages (strings) to the server. the server receives the message and also displays the date, time, ip address and port number of the client in a text box.

    but like i said in the first post i would like to change this program so that there is a button and a listbox for the server. the button searches for clients and if the server finds any clients, the clients ip address get displayed in the listbox. also the client doesn't need to be able to send messages. just maybe receive a message when it connects to the server.

    can anyone help me change the code?

Tags for this Thread

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