How do i tell if one instance of my program is running? i thought i could do this with a data file but it would just be messy :(
i want to do this as i only want 1 instance to ever be open at one point.
Edit: Re-tagged
|
3
|
How do i tell if one instance of my program is running? i thought i could do this with a data file but it would just be messy :( i want to do this as i only want 1 instance to ever be open at one point. Edit: Re-tagged
|
|||
|
|
|
|
You can create a Semaphore ... and stop execution (put the code into your *.dpr file) and bring you running application to the screen.
EDIT (added the RestoreWindow method): The aFormName is the name of your main form class in your application.
|
||||||||||
|
|
|
As Jon first suggested, you can try creating a mutex. Call The mutex technique gives you a Boolean answer: Yes, there is another instance, or no, there is not. You frequently want to know more than just that. For instance, you might want to know the handle of the other instance's main window so you can tell it to come to the foreground in place of your other instance. That's where a memory-mapped file can come in handy; it can hold information about the first instance so later instances can refer to it. Be careful when choosing the name of the mutex. Read the documentation carefully, and keep in mind that some characters (such as backslash) are not allowed in some OS versions, but are required for certain features in other OS versions. Also remember the problem of other users. If your program could be run via remote desktop or fast user switching, then there could be other users already running your program, and you might not really want to restrict the current user from running your program. In that case, don't use a global name. If you do want to restrict access for all users, then make sure the mutex object's security attributes are such that everyone will be able to open a handle to it. Using a null pointer for the You're allowed to edit the DPR file of your program. That's usually a good place to do this kind of thing. If you wait until the
There's a question of when to close the mutex handle. You don't have to close it. When your process finally terminates (even if it crashes), the OS will automatically close any outstanding handles, and when there are no more handles open, the mutex object will be destroyed (thus allowing another instance of your program to start and consider itself to be the first instance). But you might want to close the handle anyway. Suppose you chose to implement the |
||||||||||
|
|
|
The all-mighty JVCL has a component for this purpose. See "TJvAppInstances". |
||
|
|
|
|
You create a system mutex. I don't have Delphi code, but here's C++ code:
|
||||||||
|
|
|
The normal solution is to create a named, system-wide mutex. If you manage to create it, you're the one running application. If you don't, you know there's a different one. EDIT: I haven't provided code as I don't know Delphi. I can provide C# code if that would be helpful though. |
||
|
|
|
|
I'd like to add one point to the excellent answer by Rob Kennedy (apart from the fact that it would be best to make a function out of his code instead of copying everything into the DPR file. You only need two parameters, the name of the mutex, and a boolean whether the mutext should be per-user or system-wide). The answer does not give much consideration to the naming of the mutex. If you expect your program to be installed via Inno Setup (and maybe other setup tools too) you should choose the name carefully, as the mutex can be used to have the setup program check whether the application is currently running, and alert the user that they should close all instances of the application. If you choose to allow one instance of the program per user you may need to create a second system-wide mutex too, as the setup may need to have no running instances of the application at all in order to be able to replace files. The name that is to be used for synchronization with an InnoSetup installer must be hard-coded. |
||
|
|
|
|
I would say that there are several different strategies that you can employ. But the easiest one (and not platform specific) is the one you yourself suggested, namely to, at the start of the program check to see if there is a lock file created in a set, specific location. If this lock file exists, then another instance is already running, if it doesn't exist, then there is not another instance running. When your program exits, you delete the lock file. However, employing this strategy you have another problem, what happens if your program crashes? The lock file still remains, and this specific case need to be handled. Another strategy is the system-wide mutex solution, where you register your presence within the operating system (or it's also plausible that this is done automagically). When a second instance then tries to start, it checks if there's already a process active with a specific ID. If it already exists, the second process chooses not to start, and optionally brings the first process' window in focus (if the process in question owns a window that is). However, this strategy is platform specific, and the implementation will differ from platform to platform. |
||
|
|
|
|
You can simply use FindWindow windows api function. In delphi class name of the window is the same as class name, you can redefine class name by overriding CreateParams function. To check if window exists add code before main window is created , before Application.Initialize;
|
||||
|
|
|
In the past, I've used a socket to prevent multiple instances from running at the same time. If the socket is in use, don't continue the program, if it's available let everything run as normal. |
||
|
|
|
|
See this unit (using CreateMutex): UiApp Additionally at this page, you can read the advantages and disadvantages for to this work with differents methods (mutex, FindWindows,...). This unit have the solution to activate the previos instance of the application when this is detected. Regards and excuse-me for my bad english. Neftalí -Germán Estévez- |
||
|
|