Previous Topic

Next Topic

Inhoudsopgave

Book Index

IsahBase Object

Description

Contains the default functions and procedures.

Remarks

The IsahBase Object does not have to be created explicitly in Isah Script. This all takes place in the background. The IsahBase Object procedures and functions are therefore directly accessible in all scripts.

Properties, Procedures and Functions

Function Function IsahDateToStr( Year: Integer, Month: Integer, Day: Integer ): String

Function Function IsahDateToStr( Date: Date ): String

Function Function IsahDBDate( Year: Integer, Month: Integer, Day: Integer ): String

Function Procedure IsahDecodeDate( Date: DateTime, Var Year: Integer, Var Month: Integer, Var Day: Integer ): String

Function Procedure IsahDecodeTime( Date: DateTime, Var Hours: Integer, Var Minutes: Integer, Var Seconds: Integer, Var MilliSeconds: Integer ): String

Function Function IsahEncodeDate( Year: Integer, Month: Integer, Day: Integer ): Date

Function Function IsahEncodeTime( Hours: Integer, Minutes: Integer, Seconds: Integer, MSeconds: Integer ): Time

Function Procedure IsahStrToDate( Var Date: DateTime, Hours: Integer, Minutes: Integer, Seconds: Integer, MilliSeconds: Integer ): String

Function Function IsahValidDate( Date: String ): Date

Function Function IsahDate( Days: Integer ): Date

Function Function IsahDateToWeek( Date: Date ): String

Example

sub main()

Dim D

Dim Year

Dim Month

Dim Day

D = IsahEncodeDate(2000, 10, 12)

MsgBox D

IsahDecodeDate D, Year,Month,Day

MsgBox Year & "" & Month & "" & Day

D = IsahEncodeDate(Year, Month, Day)

MsgBox D

end sub