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

后端 未结 6 727
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:34

    You can separate your application logic and execute it in several threads. That way, if one part of your application logic hangs up, you still have a responsive application. But you won't be able to put the GUI in multiple threads. The VCL requires you to execute all GUI related stuff in the main thread.

提交回复
热议问题