Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Share data between 2 PC with Visual Basic 6

Options
  • 10-11-2005 12:41pm
    #1
    Registered Users Posts: 36


    Hi there all,

    please please help me, i am making a little game and i want to be able to share information between 2 pcs.

    Here is exactly the situation, i am making a turn based game, much like sim city, the thing is that i want people to be able to attack each other, much like Risk, in a turn based manner, much like Risk.

    Now i have alot of the game done, but one thing i have not gone near yet is passing data between 2 different PCs so that players fight each other. I started looking into this and i now know that i can use the Winsock control to make a server and client and chat programs, but i do not know how to do those things yet. So at this point actually i will add that i am using Visual Basic 6 to make the game and would like the solution to the VB6 based if possible.

    So is Winsock the way to go? If someone actually had code to show me, i would love that... thanks for the help,

    Donal


Comments

  • Closed Accounts Posts: 19,777 ✭✭✭✭The Corinthian


    Depends on the architecture of your game, that is to say are the two PC’s talking directly to each other or going via a third party (a Web or IRC server), and are they on a local network (and thus you could in theory simply pass files between them).

    If you use Winsock or similar you have to remember that you’ll be doing two instantiations, both to send and receive, so you may find it easier to use something such as the XMLHTTP for the sending part and use Winsock simply to build a mini-server for receiving.

    As for example code, I suggest you Google, TBH. There’s plenty out there.


  • Registered Users Posts: 36 utilitarian


    Sorry Corinthian, my fault for not being specific, it is not intended for internet use, just LAN, maybe through a router, but basically PC to PC...

    as for what you say about the two instances of both that is what i was wondering, do i have to do a client/server on one side and a client server on the other.... that is what i think i will have to do...

    thanks, Donal


Advertisement