|
TADate |
Creates a date picker control
| ContextMenu | Specifies context menu to attach to control. Create the ContextMenu first |
| Cursor | Cursor shape to display when mouse is over this control |
| Date | Date in short-date format specified in Windows' Regional and Language Options |
| Enabled | False generates GUICtrlSetState(-1, $GUI_DISABLE) |
| Font | Double-click to the right to open the Font dialog. Click on + to show the Color, Name, Size and Style properties |
| Format | Custom format consisting of elements and literals (e.g. - and /). The elements are: d - one- or two-digit day dd - two-digit day. Single-digit day values are preceded by a zero ddd - three-character weekday abbreviation dddd - full weekday name h - one- or two-digit hour in 12-hour format. hh - two-digit hour in 12-hour format. Single-digit values are preceded by a zero H - one- or two-digit hour in 24-hour format HH - two-digit hour in 24-hour format. Single-digit values are preceded by a zero m - one- or two-digit minute mm - two-digit minute. Single-digit values are preceded by a zero. M - one- or two-digit month number MM - two-digit month number. Single-digit values are preceded by a zero MMM - three-character month abbreviation MMMM - full month name s - one- or two-digit second ss - two-digit second. Single-digit values are preceded by a zero t - one-letter AM/PM abbreviation (A or P) tt - AM or PM yy - last two digits of the year yyyy - full year (4 digits) |
| Left,Top | Position of control relative to its parent |
| Width,Height | Size of control in pixels |
| Hint | Text that appears when cursor hovers over control. Generates call to GUICtrlSetTip |
| Name | Name of control and of the variable that is assigned its control ID in generated code. If not specified, no variable is generated |
| OnChange | Generates (in Message Loop mode) a Case or (in OnEvent mode) a call to GUISetOnEvent and a skeleton event function. Double-click to right to open Events Editor |
| Resizing | Click on + to expand resize modes: DocAuto - resize and reposition according to new window size DocRight - Do not move right side DocLeft - Do not move left side DocTop - Do not move top DocBottom - Do not move bottom DocHCenter - Horizontal center remains fixed DocVCenter - Vertical center remains fixed DocWidth - Width does not change DocHeight - Height does not change |
| TabOrder | Sequence in which controls are selected with the Tab and Shift+Tab keys. For a Form and for each Group, TabOrder starts with 0. You may prefer to use the TabOrder Visual Editor: press Ctrl+T to open it. |
| Time | Time in format per Windows' Regional and Language Options |
| Visible | If False, generates GUICtrlSetState(-1, $GUI_HIDE) |
| DTS_SHORTDATEFORMAT | Displays the date in short format, with 2-digit year |
| DTS_LONGDATEFORMAT | Displays the date in long format |
| DTS_UPDOWN | Control acts as a spinner rather than as a combo box with month-calendar drop-down |
| DTS_SHOWNONE | Displays a check box that can be checked once a date is entered |
| DTS_TIMEFORMAT | Displays the time |
| DTS_RIGHTALIGN | Right-aligns drop-down calendar |
| WS_TABSTOP | Control can be selected with Tab and Shift+Tab |
| WS_HSCROLL | Control has horizontal scroll bar |
| WS_VSCROLL | Control has vertical scroll bar |
| WS_VISIBLE | Control is visible |
| WS_BORDER | Control has a thin-line border |
| WS_CLIPSIBLINGS | If this control overlaps with another, this control shows partially |
| WS_EX_CLIENTEDGE | Control has border with sunken edge |
| WS_EX_STATICEDGE | Control has a three-dimensional border |
None
MonthCal control