Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. 2 Question related to Socket

2 Question related to Socket

Scheduled Pinned Locked Moved C#
questioncsharpsysadminlounge
8 Posts 5 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    BLaZiNiX
    wrote on last edited by
    #1

    1- is it possible to create a software like Laplink or PcAnywhere in C#, what I want to do is to see the current screen on the remote computer and be able to manipulate it from my computer ? if yes how can I do this ? 2- How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Thanks

    J S J D 4 Replies Last reply
    0
    • B BLaZiNiX

      1- is it possible to create a software like Laplink or PcAnywhere in C#, what I want to do is to see the current screen on the remote computer and be able to manipulate it from my computer ? if yes how can I do this ? 2- How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Thanks

      J Offline
      J Offline
      James T Johnson
      wrote on last edited by
      #2

      BLaZiNiX wrote: 1- is it possible to create a software like Laplink or PcAnywhere in C#, what I want to do is to see the current screen on the remote computer and be able to manipulate it from my computer ? I don't see why not, essentially a program like this transmits keystrokes, mouse movement, and button clicks from the client to the server and the server sends back the bitmap representing the screen. BLaZiNiX wrote: yes how can I do this ? You implement each of the things I outlined above. Sorry if its no help; but you are asking for a lot there. BLaZiNiX wrote: How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Sounds like an IRC server; I suggest taking a look at some of the open source IRC servers out there to see how they do it; then work how to accomplish the same things in .NET. James "And we are all men; apart from the females." - Colin Davies

      B 2 Replies Last reply
      0
      • J James T Johnson

        BLaZiNiX wrote: 1- is it possible to create a software like Laplink or PcAnywhere in C#, what I want to do is to see the current screen on the remote computer and be able to manipulate it from my computer ? I don't see why not, essentially a program like this transmits keystrokes, mouse movement, and button clicks from the client to the server and the server sends back the bitmap representing the screen. BLaZiNiX wrote: yes how can I do this ? You implement each of the things I outlined above. Sorry if its no help; but you are asking for a lot there. BLaZiNiX wrote: How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Sounds like an IRC server; I suggest taking a look at some of the open source IRC servers out there to see how they do it; then work how to accomplish the same things in .NET. James "And we are all men; apart from the females." - Colin Davies

        B Offline
        B Offline
        BLaZiNiX
        wrote on last edited by
        #3

        no it's not an IRC related thing, It's only because when I use TcpClient and TcpListener, can I use the same app that run only the tcpClient suppose 5 times I want to make something more like multiple client on one server like ICQ or MSN

        J 1 Reply Last reply
        0
        • J James T Johnson

          BLaZiNiX wrote: 1- is it possible to create a software like Laplink or PcAnywhere in C#, what I want to do is to see the current screen on the remote computer and be able to manipulate it from my computer ? I don't see why not, essentially a program like this transmits keystrokes, mouse movement, and button clicks from the client to the server and the server sends back the bitmap representing the screen. BLaZiNiX wrote: yes how can I do this ? You implement each of the things I outlined above. Sorry if its no help; but you are asking for a lot there. BLaZiNiX wrote: How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Sounds like an IRC server; I suggest taking a look at some of the open source IRC servers out there to see how they do it; then work how to accomplish the same things in .NET. James "And we are all men; apart from the females." - Colin Davies

          B Offline
          B Offline
          BLaZiNiX
          wrote on last edited by
          #4

          yes I know I ask a lot, it's because I want to make a program and I don't have any idea . If u have one u can tell me :) CYA

          1 Reply Last reply
          0
          • B BLaZiNiX

            1- is it possible to create a software like Laplink or PcAnywhere in C#, what I want to do is to see the current screen on the remote computer and be able to manipulate it from my computer ? if yes how can I do this ? 2- How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Thanks

            S Offline
            S Offline
            Sijin
            wrote on last edited by
            #5

            BLaZiNiX wrote: How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other Should be a breeze if you use .NET Remoting. May the Source be with you Sonork ID 100.9997 sijinjoseph

            1 Reply Last reply
            0
            • B BLaZiNiX

              no it's not an IRC related thing, It's only because when I use TcpClient and TcpListener, can I use the same app that run only the tcpClient suppose 5 times I want to make something more like multiple client on one server like ICQ or MSN

              J Offline
              J Offline
              James T Johnson
              wrote on last edited by
              #6

              BLaZiNiX wrote: It's only because when I use TcpClient and TcpListener It all depends on how you work with them; I don't know of any limitations with TcpClient/TcpListener. To test this theory out you could create a simple server that accepts a connection, then spawns a new thread to handle that connection. In the real world this is a bad thing to do (too many threads will slow it all down); but it will help illustrate that there shouldn't be any such limitation. James "And we are all men; apart from the females." - Colin Davies

              1 Reply Last reply
              0
              • B BLaZiNiX

                1- is it possible to create a software like Laplink or PcAnywhere in C#, what I want to do is to see the current screen on the remote computer and be able to manipulate it from my computer ? if yes how can I do this ? 2- How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Thanks

                J Offline
                J Offline
                jparsons
                wrote on last edited by
                #7

                BLaZiNiX wrote: 2- How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Here is a link to a small chatroom that I wrote in .NET. It's only the barebones. It was more intended for showing the use of Asynchronus I/O in .NET but it should give you the basic picture. http://www.prism.gatech.edu/~gte477n/languages/csharp/asyncchat.html[^] Jared jparsons@jparsons.org www.prism.gatech.edu/~gte477n

                1 Reply Last reply
                0
                • B BLaZiNiX

                  1- is it possible to create a software like Laplink or PcAnywhere in C#, what I want to do is to see the current screen on the remote computer and be able to manipulate it from my computer ? if yes how can I do this ? 2- How can I create a multiple client chat app like one server to monitaring all the messages of all the client connected and a lot of the same client app to chat with each other ? Thanks

                  D Offline
                  D Offline
                  Daniel Turini
                  wrote on last edited by
                  #8

                  Try VNC, Clickety[^] It comes with sources. Concussus surgo. When struck I rise.

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • World
                  • Users
                  • Groups