Contents:

 

 

Introduction


News blog


What is Servoy?


Getting Started


Comparison Servoy/VFP


Performance


How-To's

 

Code Reference

 

VFP2Servoy Toolkit

 

 

Contact / feedback

 

 

 

 

 

 

 

 

 

 

 

 

 

 

EXIT - break



Break allows you to exit a current loop, switch or label.

 

VFP code example

FOR i = 1 TO 10
   IF i = 7
      ? "Max. counter reached"
      EXIT
   ENDIF
NEXT

 

Servoy code example

for(var i=0; i<10; i++)
{
   if(i==7){
      application.output("Max. counter reached");
      break;
   }
}


 

 

External resources:

 

vfp plugin

 

ServoyWorld 2012 pics

 

Official Servoy website

 

Ken Levy on Servoy

 

Servoy info

 

Servoy Forum

 

Servoy Documentation

 

VisualFoxpro.com © 2010-2012 • All rights reserved • Contact: info@visualfoxpro.com