ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Managing external languages / Object functions
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)+"")
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help