//AB/ CLASSDEF Class cDateTimePick is a AbstractForm ComboForm ComboFormMixin DefineComboFormMixin Set Control_Type To ctBASE Set Floating_Menu_Id TO TextBoxFloater.obj Set ClassPackage To "cDateTimePick.pkg" Set ObjectNameMask To "oDateTimePick" Property Complex Location 0 0 // Location of the control Property Always_Generate Complex Size 14 90 // Size of the control. For best appearance, Set height to 14. // Property No_Execute String psTimeSeparator ":" // Used internally to parse current time strings Property No_Execute Boolean pbUpDown False // Places an up-down control to the right of the DTP control to modify Date-Time values. Property No_Execute Boolean pbShowNone True // It is possible to have no date currently selected in the control. With this style, the control displays a check box that users can check once they have entered Or selected a Date. Property No_Execute Boolean pbShortDateFormat True // Displays the date in short format. The default format string. For this style Is defined by LOCALE_SSHORTDATE, which produces output like "4/19/96". Property No_Execute Boolean pbLongDateFormat False // Displays the date in long format. The default format string for this style Is defined by LOCALE_SLONGDATEFORMAT, which produces output like "Friday, April 19, 1996". Property No_Execute Boolean pbShortDateCenturyFormat False // Version 5.80. Similar to the DTS_SHORTDATEFORMAT style, except the year Is a four-digit Field. The default format String For this style Is based on LOCALE_SSHORTDATE. The output looks like: "4/19/1996". Property No_Execute Boolean pbTimeFormat False // Displays the time. The default format string for this style is defined by LOCALE_STIMEFORMAT, which produces output like "5:31:42 PM". Property No_Execute Boolean pbAppCanParse False // Allows the owner to parse user input and take necessary action. It enables users To edit within the client area Of the control when they press the F2 key. Property No_Execute Boolean pbRightAlign False // The drop-down month calendar will be right-aligned with the control instead Of Left-aligned, which Is the default. Property No_Execute String psFormMask "" // A DTP format string consists of a series of elements that represent a particular piece Of information And Define its display format. The elements will be displayed In the order they appear In the format String. // Property No_Execute NO_VISIBLE Mode Form_Border Border_ClientEdge Border_ClientEdge Property no_execute anchor peAnchors anNone // When a container is resized this determines how child objects are moved and resized. Objects can be anchored in any combination of left, right, top or bottom. End_Class