AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Errores / Errores WLanguage
  • 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
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