|
|
|
|
|
Detiene la ejecución automática de una aplicación WINDEV. La ejecución automática fue definida por AutoRunAdd. // -- From a WINDEV application // Automatically run "MyApp" at startup AutoRunAdd(alStartup, "MyApp", fExeDir() + "\CustomerManagement.exe") ... // Stop the automatic run of "MyApp" AutoRunDelete(alStartup, "MyApp")
Sintaxis
AutoRunDelete(<Run event> , <Application>)
<Run event>: Constante de tipo Integer Event que iniciaría la ejecución de la aplicación: | | alStartup | Ejecutar la aplicación cuando se inicia el PC. |
<Application>: Cadena de caracteres Nombre de la aplicación, definido con AutoRunAdd. Observaciones Error management Caution: AutoRunDelete returns no error code. To determine if this function generated an error, use the ErrorOccurred variable. If an error occurs, you can get more details on the error with ErrorInfo. Clasificación Lógica de negocio / UI: Lógica de negocio
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|