CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Apr 2005
    Posts
    54

    Exclamation how send msg to other computer ?

    I am looking s/w to postmessage(SOCKET s,
    HWND hWnd,
    UINT Msg,
    WPARAM wParam,
    LPARAM lParam
    )
    to send msg to other computer (to get control on window on other computer).
    Last edited by ok21; April 9th, 2009 at 02:17 AM.

  2. #2
    Join Date
    Aug 2008
    Location
    India
    Posts
    186

    Wink Re: how send msg to other computer ?

    May be you can run a thread dedicated to receive the message or cmd from source pc.... and then post the message from this thread in your application...

    Hope this helps..

    Regards,
    Looser

  3. #3
    Join Date
    Apr 2005
    Posts
    54

    Re: how send msg to other computer ?

    It is not not to write code and transmit a special msg from computers, but I do not want to write code for processing all types of msgs, so I am looking for something prepared.

  4. #4
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: how send msg to other computer ?

    Victor Nijegorodov

  5. #5
    Join Date
    Apr 2005
    Posts
    54

    Re: how send msg to other computer ?

    I know about all ways - pipes, tcop/ip, mailslots etc. I ask about s/w for control windows, not about transmit data beween computers.

  6. #6
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: how send msg to other computer ?

    Quote Originally Posted by ok21 View Post
    ... I ask about s/w for control windows, not about transmit data beween computers.
    Then, please, explain us more clear what you need (because there is no way to "postmessage" or send message between comuters - only sockects/pipes/mailslots can be used)
    Victor Nijegorodov

  7. #7
    Join Date
    Apr 2005
    Posts
    54

    Re: how send msg to other computer ?

    I am looking for s/w where GUI part & calculation part are divided one from another. It is not problem to do it via any API-communication mechanism, but it is needed to write parser for each used windows message. I did it allways, but I think better to use any standard s/w, that include transmitting part & receiver-parser, if it is exist.
    Last edited by ok21; April 9th, 2009 at 10:54 PM.

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