Switch to: V12V11V10V9V8V7V6V5

VDate Class: Construction Methods

VDate.VDate()

Declaration:

VDate( 
	inName as String, 
	inFlags as Integer = fNone, 
	inMethod as String = "" )

Parameters:

  • inName - The name of field.
  • inFlags - The field flags. Default is fNone.
  • inMethod - The method formula. Default is empty.

Description:

Constructor of VDate Class.

You may need to use this method only if you are using the Class Style of coding.

Example:

sub tblPerson
    name = "tblPerson"
 
    fldBornDate = new VDate( "fldBornDate", fIndexed )
end