BOOL %HI_SelectTimeDialog( TIME in out StartTime, TIME in out EndTime := (invalid), BOOL in bStrongInequality := true, BOOL in bShowHours := 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:
|
| bShowHours | Allows to show time data (hours and minutes) in the dialog box:
|
| bReadOnlyHours | Allows to change time data (to edit hours and minutes):
|
| x, y | Position of the dialog box on monitor. |

TIME _bt TIME _et BOOL _res INT _i _i := 1 _bt := _i\TIM _et := %AddTime(_bt, 3600*10) _res := %HI_SelectTimeDialog(_bt, _et, @FALSE, @TRUE, @FALSE) IF _res THEN _tmA := _bt _tmA2 := _et ENDIF |