11-16-2013 04:47 AM
How can build an application (exe file) that can be running in multiple instances (like notepad)?
I select the vi properties.execution.reentrancy.preallocated clone reentrant execution but after building the application, the exe file can be run only into one instance. Double-clicking on the exe file for second time don't open a new instance.
Solved! Go to Solution.
11-16-2013 09:51 AM
If you add the line allowmultipleinstances=true to the EXE's INI file under the application's section, every call to the EXE will create a new instance. Note that if you use shared resources (hardware, files, etc.), you will have to account for that.
11-16-2013 01:17 PM
It works!
Thank you.