Sharing data array between two applications in Delphi
I want to share array data between two applications. In my mind, first program create the array and the second program can read the array from already allocated memory area. The array is not a dynamic array. I found a way to share pointer using OpenFileMapping and MapViewOfFile . I have no luck to implement array sharing and I think i don't want to use IPC method yet. Is it possible to plan a scheme like this (sharing array)? My purpose is to minimize memory usage and reading data quickly. Cosmin Prund Scratched my head thinking of what a short-but-complete example of sharing memory between