Re: [Lazarus] Simple ipc server fatal error on start - 0xc000007b

2023-04-01 Thread Sven Barth via lazarus
Wayne Sherman via lazarus schrieb am So., 2. Apr. 2023, 02:45: > On Fri, Mar 31, 2023 at 9:38 AM Bo Berglund wrote: > > What I want to do is...use the D7 app to read a hardware device on > command > > and send the data to the Lazarus app. > > You probably don't need the extra complication of IPC,

Re: [Lazarus] Simple ipc server fatal error on start - 0xc000007b

2023-04-01 Thread Wayne Sherman via lazarus
On Fri, Mar 31, 2023 at 9:38 AM Bo Berglund wrote: > What I want to do is...use the D7 app to read a hardware device on command > and send the data to the Lazarus app. You probably don't need the extra complication of IPC, sockets, COM, or OLE automation. Instead of creating a D7 app, build a D7

Re: [Lazarus] Simple ipc server fatal error on start - 0xc000007b

2023-04-01 Thread Giuliano Colla via lazarus
Il 01/04/2023 14:50, Jean SUZINEAU via lazarus ha scritto: You can uses pipes too, basically just two files no need of networking, one for reading (delphi to freepascal), one for writing(freepascal to delphi). I made last year a small app to communicate with Audacity (https://www.audacitytea

Re: [Lazarus] Simple ipc server fatal error on start - 0xc000007b

2023-04-01 Thread Jean SUZINEAU via lazarus
You can uses pipes too, basically just two files no need of networking, one for reading (delphi to freepascal), one for writing(freepascal to delphi). I made last year a small app to communicate with Audacity (https://www.audacityteam.org/) using a specific plugin (https://manual.audacityteam

Re: [Lazarus] Simple ipc server fatal error on start - 0xc000007b

2023-04-01 Thread Giuliano Colla via lazarus
Il 01/04/2023 10:53, Bo Berglund via lazarus ha scritto: And I can use Indy10 sockets rather than the now since long deprecated TTcpClient and TTcpServer components. I guess I will save myself a lot of time doing this... If I were you I'd take ten minutes to give it a try. Just compile, launch

Re: [Lazarus] Simple ipc server fatal error on start - 0xc000007b

2023-04-01 Thread Giuliano Colla via lazarus
Il 01/04/2023 09:37, Bo Berglund via lazarus ha scritto: Where are the "internet examples of Delphi 7" located? Inside the Delphi7 installation or where? I can't find any. By the name you write it looks to me (without having found the example) that it is a*network* application using TCP/IP soc

Re: [Lazarus] Simple ipc server fatal error on start - 0xc000007b

2023-04-01 Thread Bo Berglund via lazarus
On Sat, 01 Apr 2023 09:37:00 +0200, Bo Berglund via lazarus wrote: >On Sat, 1 Apr 2023 01:58:05 +0200, Giuliano Colla via lazarus > wrote: > >>Among the internet examples of Delphi 7 you should find a small app named >>netchat, >>which provides a basic IPC. It’s quite simple and bullet-proof. I’

Re: [Lazarus] Simple ipc server fatal error on start - 0xc000007b

2023-04-01 Thread Bo Berglund via lazarus
On Sat, 1 Apr 2023 01:58:05 +0200, Giuliano Colla via lazarus wrote: >Among the internet examples of Delphi 7 you should find a small app named >netchat, >which provides a basic IPC. It’s quite simple and bullet-proof. I’ve converted >to >Lazarus on Linux, and used as a base for my needs of IP