Thread: A doubt on how to make a program

  1. #1
    Registered User
    Join Date
    Aug 2004
    Posts
    66

    Post A doubt on how to make a program

    Hi there, I have a smal doubt and I would like to know if someone could help me.
    The thing is that I want to create a program to acces my computer from a remote acces, for example a laptop.
    Actually I have no idea on how to make it, I just know that I must create a program that connects the laptop to the main computer via Internet, but I do not know how.
    If anyone could help me it would be very nice, even by just giving me some Ideas on how to make it
    please
    Thanks

  2. #2
    ... kermit's Avatar
    Join Date
    Jan 2003
    Posts
    1,534
    Do you do any programming at all? If you don't know how to program, you need to learn. Learn the fundamentals of programming in a language, and then think about writing a program such as the one you described.

    ~/

  3. #3
    Registered User
    Join Date
    Sep 2001
    Posts
    4,912
    What OS? Windows already has one.

  4. #4
    Gawking at stupidity
    Join Date
    Jul 2004
    Location
    Oregon, USA
    Posts
    3,218
    Code:
    #include <stdio.h>
    #include <stdlib.h>
    
    int main(void)
    {
      system("ssh myhomecomputer.com");
      return 0;
    }
    The ability to remotely access computers has been around for decades.
    If you understand what you're doing, you're not learning anything.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Client-server system with input from separate program
    By robot-ic in forum Networking/Device Communication
    Replies: 3
    Last Post: 01-16-2009, 03:30 PM
  2. Need help with this program I'm trying to make
    By Sshakey6791 in forum C++ Programming
    Replies: 14
    Last Post: 12-01-2008, 04:03 PM
  3. Replies: 9
    Last Post: 06-17-2008, 11:38 AM
  4. want to make this small program...
    By psycho88 in forum C++ Programming
    Replies: 8
    Last Post: 11-30-2005, 02:05 AM
  5. How To Make The Program Installed In Program Files Folder?
    By javacvb in forum Windows Programming
    Replies: 4
    Last Post: 11-05-2003, 05:33 PM