CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Sep 2001
    Posts
    4

    See client screen

    I want to develop application in user administrator can see client screen, is it possible?!
    I think it is possible if I get data that transfer to display card in client system and transfer it with winscok control and server capture it and display it. Any Idea!

    Shoaib Hasan.
    Saadi Soft



  2. #2
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: See client screen

    The best choice is PCanywhere. BUt if you want to create a custom app to see the remote computer you can use winsock. The Server will capture the screen every n seconds, save it to the file, zip it and send to the client. Client on DataArrival event will unzip it and load picture of the server.

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

  3. #3
    Join Date
    Jul 2000
    Location
    Milano, Italy
    Posts
    7,726

    Re: See client screen

    Nice idea.

    (out of votes is my natural state...)

    Special thanks to Lothar "the Great" Haensler, Tom Archer, Chris Eastwood, TCartwright, Bruno Paris, Dr_Michael
    and all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

    The Rater
    ...at present time, using mainly Net 4.0, Vs 2010



    Special thanks to Lothar "the Great" Haensler, Chris Eastwood , dr_Michael, ClearCode, Iouri and
    all the other wonderful people who made and make Codeguru a great place.
    Come back soon, you Gurus.

  4. #4
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: See client screen

    Another solution is to use third party software, that other guy (Iouri I believe, if not, sorry) mentioned PCAnywhere, which is good. But I would suggest Funk Proxy, this is a real great application that even comes with a Typelibrary, so you can access it from withing your very own VB application.

    If you do want to write it yourself, find some code that takes a screenprint (I do mean find, the board has a number of post on this matter, so don't ask again, please), save that screenprint to file (again, should be on the board), and then send that file using winsock (not sure if that's on the board, but check anyway).
    On the other side, write the things you are getting in to file, and open that file in a picturebox.

    Tom Cannaerts
    [email protected]

    Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning -- Rich Cook
    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

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