Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9033655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T08:17:10+00:00 2026-06-16T08:17:10+00:00

Possible Duplicate: Inter-process communication Using Delphi, is there any possibility that I build two

  • 0

Possible Duplicate:
Inter-process communication

Using Delphi, is there any possibility that I build two simple programs that communicate and interact with each other, let’s say by clicking a button in the first one the other one displays a message.

Is It Possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T08:17:11+00:00Added an answer on June 16, 2026 at 8:17 am

    There are many possebilties for IPC

    • Sending window messages
    • using Named Pipes
    • using TCP-IP / UDP
    • shared memory

    and so on …

    Easiest way would be sending Messages to a window handle found by FindWindow
    Named Pipes and TCP-IP should be prefered for extensive communications.

    Microdemo:

    First Project:

    unit Unit2; 
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls;
    
    type
      TTMiniDemoSender = class(TForm)
        Button1: TButton;
        procedure Button1Click(Sender: TObject);
      private
        { Private-Deklarationen }
      public
        { Public-Deklarationen }
      end;
    
    var
      TMiniDemoSender: TTMiniDemoSender;
    
    implementation
    
    {$R *.dfm}
    Const
         C_MyMessage=WM_USER + 1234;
    
    
    
    procedure TTMiniDemoSender.Button1Click(Sender: TObject);
    var
     wnd:HWND;
    begin
        wnd := FindWindow('TTMiniDemoReceiver',nil);
      if wnd<>0 then SendMessage(wnd,C_MyMessage,123,456);
    
    end;
    
    end.
    

    Second Project:

    unit Unit1;
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs;
    
    Const
         C_MyMessage=WM_USER + 1234;
    type
    
      TTMiniDemoReceiver = class(TForm)
      private
        { Private-Deklarationen }
        Procedure MyMessage(var MSG:TMessage); message C_MyMessage;
      public
        { Public-Deklarationen }
      end;
    
    var
      TMiniDemoReceiver: TTMiniDemoReceiver;
    
    implementation
    
    {$R *.dfm}
    
    { TTMiniDemoReceiver }
    
    procedure TTMiniDemoReceiver.MyMessage(var MSG: TMessage);
    begin
       Showmessage(IntToStr(MSG.WParam) + '-' + IntToStr(MSG.LParam) );
       msg.Result := -1;
    end;
    
    end.
    

    For transferring more information you could use WM_CopyData

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Can C# be piped? Is there a way to connect two programs
Possible Duplicate: Howto build a SQL statement with using IDs that might not be
Possible Duplicate: fastest (low latency) method for Inter Process Communication between Java and C/C++
Possible Duplicate: Objective C for Windows iPhone development on Windows Is there any way
Possible Duplicate: Is there something wrong with joins that don't use the JOIN keyword
Possible Duplicate: Short Description of Python Scoping Rules I wrote two simple functions: #
Possible Duplicates: inter jvm communication Communication between two separate Java desktop applications Running multiple
Possible Duplicate: SQL JOIN: is there a difference between USING, ON or WHERE? Which
Possible Duplicate: How do I make a request using HTTP basic authentication with PHP
Possible Duplicate: Generating all Possible Combinations Is there a good LINQ way to do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.