BOOL %HI_SelectTimeDialog( TIME in out StartTime, TIME in out EndTime := (invalid), BOOL in bStrongInequality := true, BOOL in bShowTime := true, BOOL in bReadOnlyHours := false, INT in x := -1, INT in y := -1 ) |
StartTime | Begin time of interval. |
EndTime | End time of interval. |
bStrongInequality | Possible values:
|
bShowTime | Allows to show time data in the
dialog box:
|
bReadOnlyHours | Allows to change time data:
|
x, y | Position of the dialog box on monitor. |
TIME _t1 TIME _t2 BOOL _res INT _i _i := 1 _t1 := _i\TIM _t2 := %AddTime(_t1, 3600*10) _res := %HI_SelectTimeDialog(_t1, _t2, @FALSE, @TRUE, @FALSE) IF _res THEN _tmA := _t1 _tmA2 := _t2 ENDIF |