AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / Gestión de lenguajes externos / Funciones Objeto
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
Info (External language)
In french: Info
Displays a dialog box containing an information logo and the message passed in parameter.
Example
// In C
CALLWD("Info,Hello");
// In Pascal
CALLWD('Info,Hello');
// In VB
call CALLWD("Info,Hello")
Syntax
Info(<Message>)
<Message>: Character string
Message to display.
Remarks
  • The window will be closed when the user validates the "OK" button.
  • By default, the window has the same title has the current window. To modify the title, you must use Windows,TNext.
  • The maximum size of the message cannot exceed 200 characters.
  • To display the message on several lines, use the following syntax:
    • Example in C:
      CALLWD("Info,  \n ");
    • Example in Pascal:
      CALLWD('Info, <Text1>'+Chr(10)+'<Text2>');
    • Example in VB:
      call CALLWD("Info, "+CHR(10)+"")
Versión mínima requerida
  • Versión 14
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

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