AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones de proyectos
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Executes a global procedure present in an external component. This external component is loaded with <Component>.Load.
Example
plugin_component is Component
plugin_component.Load(plugin_component_physical_name)
plugin_main_interface is ...
MainInterface <- plugin_component.Exécute("GetMainInterface")
MyComponent is Component
MyComponent.Load("C:\MyComponents\MyComponent.wdk")
MyComponent.Exécute("MyProcedures.Hello", ("World"))
Syntax
<Result> = <Component>.Execute(<Procedure> [, <Parameter 1> [... [, <Parameter N>]]])
<Result>: Expected type
Return value of the procedure.
<Component>: Component variable
Name of the Component variable corresponding to the component that contains a function to be executed.
<Procedure>: Character string
Name of the procedure of the external component to be executed.
<Parameter 1>: Optional parameters (the type corresponds to the parameter type)
Optional parameter expected by the procedure. This parameter must be specified between parentheses.
<Parameter N>: Optional parameters (the type corresponds to the parameter type)
Optional parameter expected by the procedure. This parameter must be specified between parentheses.
Remarks
If the call fails, the function causes a fatal error.
Business / UI classification: Neutral code
Versión mínima requerida
  • Versión 28
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 11/01/2023

Señalar un error o enviar una sugerencia | Ayuda local