Compartilhar via


DateTime_SetRange (Windows CE 5.0)

Send Feedback

This macro sets the minimum and maximum allowable system times for a date and time picker (DTP) control.

BOOL DateTime_SetRange(HWNDhwndDT,DWORDflags,LPSYSTEMTIMElpSysTimeArray);

Parameters

  • hwndDT
    Handle to a DTP control.
  • flags
    Value that specifies which range values are valid. It can be a combination of the following values.
    Value Description
    GDTR_MIN The first element in the SYSTEMTIME structure array is valid and will be used to set the minimum allowable system time.
    GDTR_MAX The second element in the SYSTEMTIME structure array is valid and will be used to set the maximum allowable system time.
  • lpSysTimeArray
    Long pointer to a two-element array of SYSTEMTIME structures. The first element of the SYSTEMTIME array contains the minimum allowable time. The second element of the SYSTEMTIME array contains the maximum allowable time. It is not necessary to fill an array element that is not specified in the flags parameter.

Return Values

Non-zero indicates success. Zero indicates otherwise.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Commctrl.h.

See Also

DTM_SETRANGE | SYSTEMTIME

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.