// Find out the type of the "EDT_Date" edit control
SI SAI_Date.TypeSaisie = typInputDate ALORS
Message("Enter a date")
END
// Find out the type of the "EDT_Date" edit control
SI SAI_Date.TypeSaisie = typInputDate ALORS
Message("Enter a date")
END
EDT_dynamic.TypeEntry = EDT_ DateTime .TypeEnter
SAI_dynamics.FormatMemorized = "YYYYMMDDHHmmSSCCC"
SAI_dynamics.maskSaisie = SAI_DateTime.maskSaisie
EDT_dynamic = EDT_DateTime
Syntax
Finding out the type of a control Hide the details
<Result> = <Control used>.InputType
<Result>: Constant
Type of control. The possible values are: | |
typInputDate | Date type. |
typInputDuration | Duration type. |
typInputTime | Time type. |
typInputCurrency | Currency type. |
typInputNum | Numeric type (integer, real, ...). |
typInputNumericPrecise | Numeric type (for the edit controls associated with the Numeric type only). |
typInputText | Text type. |
<Control used>: Control name
Name of control to use.
Modifying the type of a control Hide the details
<Control used>.InputType = <New type>
<Control used>: Control name
Name of control to use.
<New type>: Constant
New type, the possible values are: | |
typInputDate | Date type. |
typInputDuration | Duration type. |
typInputTime | Time type. |
typInputCurrency | Currency type. |
typInputNum | Numeric type (integer, real, ...). |
typInputNumericPrecise | Numeric type (for the edit controls associated with the Numeric type only). |
typInputText | Text type. |