NlMakesis Y-Browser Y-Tasks
is there a simple way for a process to detect on startup if another instance of it is already in memory ?
class RMutex might be ur choice.
Open it to check if there is already one exist, otherwise Create it in the first process of ur binary since it is the very first one that is running.
or TFindMutex, it is more lightweight I think. Havent got time to try it yet.
You can use TFindProcess to search for any previous instances of your process.
Forum posts: 4
class RMutex might be ur choice.
Open it to check if there is already one exist, otherwise
Create it in the first process of ur binary since it is the very first one that is running.
Forum posts: 4
or TFindMutex, it is more lightweight I think.
Havent got time to try it yet.
Forum posts: 1232
You can use TFindProcess to search for any previous instances of your process.