Contents:

 

 

Introduction


News blog


What is Servoy?


Getting Started


Comparison Servoy/VFP


Performance


How-To's

 

Code Reference

 

VFP2Servoy Toolkit

 

 

Contact / feedback

 

 

 

 

 

 

 

 

 

 

 

 

 

 

FOR...NEXT - for



Executes a set of commands within a conditional loop.

 

VFP code example

FOR i = 1 TO 3
   ? "Counter value: " + TRANSFORM(i)
NEXT

 

Servoy code example

for(var i=0; i<3; i++)
{
   application.output("Counter value: " + i);
}


 

 

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