PreviousNextIndex

Create( ) method (DATETIME)


(Windows only; GUI for .NET only)

Use this set of Create( ) method overloads to initialize DATETIME values in ABL.

Note: This method is used primarily by the Visual Designer during code generation. You should not expect to use this method directly.

Return type: DATETIME

Access: PUBLIC STATIC

Applies to: Progress.Util.DateTimeHelper class

Syntax
DateTimeHelper:Create( method-parameters ) 

method-parameters

The following example uses this method to initialize a DATETIME variable with the date, July 28, 1986, and then displays the result:

USING Progress.Util.* FROM ASSEMBLY. 
DEFINE VARIABLE aDateTime AS DATETIME NO-UNDO. 
aDateTime = DateTimeHelper:Create( 1986, 7, 28 ). 
Display aDateTime. 

See also: Create( ) method (CHARACTER), Create( ) method (DECIMAL)


OpenEdge Release 10.2B
Copyright © 2009 Progress Software Corporation
PreviousNextIndex