Contents:

 

 

Introduction


News blog


What is Servoy?


Getting Started


Comparison Servoy/VFP


Performance


How-To's

 

Code Reference

 

VFP2Servoy Toolkit

 

 

Contact / feedback

 

 

 

 

 

 

 

 

 

 

 

 

 

 

DAY() - date.getDate()



Returns the numeric day of the month for a given date(time) expression.

 

VFP code example

d = DATE(2012,10,23)
? DAY(d)                                 // 23

 

Servoy code example

var d = new Date(2012,9,23)              // MONTH 9 = OCTOBER  !!
application.output(d.getDate())          // 23

// OR using the DAY() function alternative:

var d = new Date(2012,9,23)             
application.output(globals.DAY(d))       // 23

Note: DAY() 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