The
Name55 property is used to manipulate the logical name of a Hyper File 5.5 data file that has not been migrated and is located in a WINDEV 28 analysis. You can:
- Find out the logical name of a data file.
- Define the name of a 5.5 data file created programmatically in a WINDEV 28 analysis.
// Find out the logical name of the Customer data file
ResName55 = Customer.Name55
Syntax
Finding out the logical name of a data file in 5.5 format Hide the details
<Logical name> = <Data file>.Name55
<Logical name>: Character string
Logical name of the data file in 5.5 format.
<Data file>: Character string
Logical name of the data file in the analysis in WINDEV 28 format.
Defining the logical name of a data file in 5.5 format created through programming Hide the details
<Data file>.Name55 = <New logical name>
<Data file>: Character string
Name of the data file defined through programming via the File Description type.
<New logical name>: Character string
Logical name of the data file in 5.5 format.