At first I have windows.
Then I just tryed NamedPypes.
And it worked localy on my computer with 2 diferent applications (one application server other client).
I created server :
FServer := TPipeServer.CreatePipeServer('', 'testit', True);
and then client
TPipeClient.Create('', 'testit')
If I put server on diferent computer how I would need to connect to him.
Is it
FServer := TPipeServer.CreatePipeServer(computer_IP, 'testit', True);
TPipeClient.Create(server_computer_IP, 'testit')
I am realy inexperiencedd in these thing