Nombre Del Proceso
Publicado: 27 May 2009, 00:28
Hola, me gustaria que mi programa no lo puedieran ejecutar mas de 1 vez, por eso queria saber como hacer para que no cambie el nombre del proceso cambiando el nombre. ^^ gracias
En español. Descarga programas libres y Open-Source. Añade tu programa a la librería de Scripts en Autoit.es
http://autoit.es/
Código: Seleccionar todo
#include <Misc.au3>
_Singleton("TheNameOfMyScript")
In this instance, the script will immediately exit if there is already one copy running. If you simply
want know if another copy is running, you can use code similar to the next example:
#include <Misc.au3>
If _Singleton("MyScriptName", 1) Then
; We know the script is already running. Let the user know.
MsgBox(0, "Script Name", "This script is already running. Using multiple copies of this
script at the same breaks the [(UltimaCoder)] License!")
Exit
Endif