How to create Chrome like application in Delphi which runs multiple processes inside one Window?

后端 未结 6 731
Happy的楠姐
Happy的楠姐 2021-01-30 14:52

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

6条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-30 15:28

    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.

提交回复
热议问题