Contains information about a change that has taken place in a date and time picker (DTP) control
Global Const $tagNMDATETIMECHANGE = $tagNMHDR & ";int Flag;short Year;short Month;short DOW;short Day;" & _
"short Hour;short Minute;short Second;short MSecond"
参数
$tagNMHDR | Contains information about a notification message |
Flag | Indicates if the control is set to "no date" status. This flag also specifies whether the contents of the date are valid and contain current time information. This value can be one of the following: $GDT_NONE - The control is set to "no date" status $GDT_VALID - The control is not set to the "no date" status |
Year | Year |
Month | Month |
DOW | Day of week |
Day | Day |
Hour | Hour |
Minute | Minute |
Second | Second |
MSecond | Milliseconds |
注意/说明
This structure is used with the $DTN_DATETIMECHANGE notification message
相关