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
Library,Error (External language)
In french: Bibli,Erreur
Loads the file that contains the error messages handled by WD??EXE.DLL in the desired language. If no Library, Error is called, the error messages are displayed in French by default.
Example
// In C
CALLWD("LIBRARY,ERROR,GERMAN.WDM");
if WdInt>0 {
CALLWD("ERROR, File of messages not found");
}
// In Pascal
CALLWD('LIBRARY, ERROR, GERMAN.WDM');
if WdInt>0 then CALLWD('ERROR,File of messages not found');
// In VB
call CALLWD("LIBRARY, ERROR, GERMAN.WDM")
if WdInt>0 then
call CALLWD("ERROR,File of messages not found")
end if
Syntax
Library,Error(<File name>)
<File name>: Character string
Name and path of the file to load. This file is supplied with WINDEV or it is created by WDINT. Its extension is .WDM. WdInt is greater than 0 when <File Name> was not found.
Remarks
Library, Error cannot be used to load a file that was not created by WDINT.
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help