Is it possible to create an \"application group\" which would run under one window, but in separate processes, like in Chrome browser? I\'d like to divide one application into m
I am not sure about how Delphi operates but the standard procedure for multiprocess programming is forking.
You fork a new process with whatever code you want. Pass information to the forked process and let it run doing whatever it wants.
Can't explain multiprocess programming in one thread response. But look it up.