Thread: Basic Networking Code

  1. #1
    C++ and Flash Programmer
    Join Date
    Jul 2004
    Posts
    7

    Basic Networking Code

    Hello,
    I need some networking code in which I can send a program through a small network of computers. I need to send a simple program through a network on the computer. The program will then load another aplication.
    Thanks

  2. #2
    Registered User
    Join Date
    Sep 2004
    Location
    California
    Posts
    3,268
    That's not the way it works. Sending data between two computers requires a program running on each computer (one is usually called a client, and the other is a server). These two programs talk to each other via networking.

    You cant just spontaneously send a program to another computer without something running on that computer to receive the program. Maybe if you went into more detail on what you are trying to accomplish, I could help you further.

  3. #3
    C++ and Flash Programmer
    Join Date
    Jul 2004
    Posts
    7
    I can load the application through a common drive on the network. What types of source code could I sue to send a file.

  4. #4
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    >>I can load the application through a common drive on the network.
    If you mean "I can get the other computer to run the application by running it from a shared drive", I doubt it.

    >>What types of source code could I sue to send a file.
    I don't know what or who you could sue for it, but look up the FTP protocol for ideas on how to implement file transfer.

    For a more specific code example, you can take a look at the source code for my ICerView program (get it from my website, the link's in my signature).

    This wouldn't be for a virus or anything now, would it? Because copying a program to a remote computer and then executing it remotely... just sounds rather suspicious to me.
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Visual Basic Code Help
    By Slinger137 in forum Windows Programming
    Replies: 9
    Last Post: 01-04-2009, 10:26 AM
  2. Basic Code
    By MadCow257 in forum Game Programming
    Replies: 6
    Last Post: 03-01-2005, 05:28 PM
  3. True ASM vs. Fake ASM ????
    By DavidP in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 04-02-2003, 04:28 AM
  4. Seems like correct code, but results are not right...
    By OmniMirror in forum C Programming
    Replies: 4
    Last Post: 02-13-2003, 01:33 PM
  5. Interface Question
    By smog890 in forum C Programming
    Replies: 11
    Last Post: 06-03-2002, 05:06 PM