|
|
|
|
|
- Syntaxes according to the values to convert
- Using HConvertX (method kept for backward compatibility with WINDEV 5.5)
HConvertX (Function) In french: HConvertX
 Available only with these kinds of connection
Converts a numeric value into a binary string in order to perform a search on a numeric key. It builds a composite key from one or more numeric items.
HBuildKeyValue must be used to perform searches on the composite keys for data files that use "Mode 7" to manage spaces in text items. For more details, see Composite keys.
Warning
These functions are kept for backward compatibility to migrate the applications developed in WINDEV 5.5 and WEBDEV 1.5.
Srch is string
HConvertE(Search, EDT_Quantity)
Srch = Complete(EDT_ProductRef, 8) + Srch
HReadSeek(Orders, CompKey, Srch)
Syntax
<Result> = HConvertX(<Text variable> , <Numeric value>)
<Result>: Boolean - True if no problem occurred,
- False if an error occurs. HError is used to identify the error.
<Text variable>: ANSI string variable Variable to which the conversion result will be assigned. This variable must have a sufficient size and it will be filled with space characters. <Numeric value>: Numeric variable or numeric value Value to convert. Remarks Syntaxes according to the values to convert | | HConvertC(<string>,<Short integer>) | | HConvertD(<string>,<Double real>) | | HConvertE(<string>,<Integer>) | For backward compatibility with WEBDEV 1.5, this function handles integer_55 on 2 bytes. | HConvertL(<string>,<Long integer>) | We recommend that you use HBuildKeyValue. | HConvertM(<string>,<Currency>) | | HConvertP(<string>,<Turbo real>) | For compatibility with previous versions, this function is identical to HConvertD. | HConvertR(<string>,<Simple real>) | | HConvertU(<string>,<Unsigned integer>) | For backward compatibility with earlier versions, this function handles integer_55 on 2 bytes. | HConvertV(<string>,<1-byte signed integer>) | | Tip If you wish to use the HConvertXfunction, we advise you to use the Convert function, which is easier to handle. Using HConvertX (method kept for backward compatibility with WINDEV 5.5) To build the value of a composite key without using HBuildKeyValue, you must: - entirely fill the text components with the hMinVal constant.
- convert the numeric components with HConvert.
Example: MyCompositeKey = Complete(Customer.LastName, Dimension(Customer.LastName), hMinVal) + ...
Complete(Customer.FirstName, Dimension(Customer.FirstName), hMinVal)
Remarks: - The hMinVal constant is equivalent to Charact(0).
- The hMaxVal constant is equivalent to Charact(255).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|