ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Example
  • The beginning of the conditional statement was not entered
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
Error 14: ELSE statement without IF
Reason
You are using the ELSE keyword without using the corresponding conditional statement IF.
Correction
Check the code of your conditional statement.
Example

The beginning of the conditional statement was not entered

Code triggering the error
EDT_Lesson = "French"
ELSE
EDT_Lesson = "English"
END
Possible corrections
Complete the conditional statement.
IF TableSelect(TABLE_Lesson) = 1 THEN
EDT_Lesson = "French"
ELSE
EDT_Lesson = "English"
END
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help