Loads the HEX@ which contains the error messages managed by WD???EXE.DLL in the desired language.. If no Library, Error is called, the error messages are displayed in French by default.
// 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 (with quotes)
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.