Contents:

 

 

Introduction


News blog


What is Servoy?


Getting Started


Comparison Servoy/VFP


Performance


How-To's

 

Code Reference

 

VFP2Servoy Toolkit

 

 

Contact / feedback

 

 

 

 

 

 

 

 

 

 

 

 

 

 

^ | ** - Math.pow()



Returns base to the exponent power.

 

VFP code example

? 3 ^ 8                           && Returns 6561
? 3 ** 8                          && Returns 6561

 

Servoy code example

            
Math.pow(3,8);                    // returns 6561.0

// or alternatively:

globals.POWER(3, 8)               // returns 6561.0

Note: POW() is a function of the VFP2Servoy Toolkit

 

 

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