ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Errors / WLanguage errors
  • Reason
  • Correction
  • Examples
  • Using a conditional statement without END
  • Nested conditional statements
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 28: No END statement is associated with this SWITCH
Reason
You are using a conditional statement (SWITCH). The END keyword must be used to end this statement.
Correction
We recommend that you pay special attention to the exception process. Indeed, no error occurring in the exception process can be intercepted.
Examples

Using a conditional statement without END

Code triggering the error
SWITCH EDT_Quantity
CASE 1: STC_Comment = "Benefit from our promotions: buy one, get one free"
CASE 2: STC_Comment = "Buy one product, get one free"
Possible correction
Use the END keyword to specify that the conditional condition is ended.
SWITCH EDT_Quantity
CASE 1: STC_Comment = "Benefit from our promotions: buy one, get one free"
CASE 2: STC_Comment = "Buy one product, get one free"
END

Nested conditional statements

Code triggering the error
SWITCH EDT_Quantity
CASE 1: STC_Comment = "Benefit from our promotions: buy one, get one free"
CASE 2: STC_Comment = "Buy one product, get one free"
IF EDT_Quantity > 5 THEN
STC_Comment = ""
END
Possible correction
Check whether all the nested statements are properly ended (with the END statement for example). In our example, the second IF statement has no associated END. Add an END statement.
SWITCH EDT_Quantity
CASE 1: STC_Comment = "Benefit from our promotions: buy one, get one free"
CASE 2: STC_Comment = "Buy one product, get one free"
IF EDT_Quantity > 5 THEN
STC_Comment = ""
END
END
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help