| |
BinaryInfo | Used to get information on 4.1 binary memo (type, name, date, time and size of the source file).
Equivalent function: HInfoMemo |
BinaryLoad | Loads a binary file in a 4.1 memo item (initialize a binary memo with the file content).
Equivalent function: HLinkMemo. |
BinarySave | Saves the content of a 4.1 binary memo item in a file.
Equivalent function: HExtractMemo |
HAlias_55 | Creates an alias for a logical file or cancels all existing aliases of a logical file.
Equivalent function: HAlias. |
HAliasExternal | Loads the description of Hyper File files contained in an analysis external to the application without closing the current analysis.
Equivalent functions: - HDeclare: Imports a file description from an analysis other than the current analysis.
- HDeclareExternal: Imports a file description from an existing file.
|
HAssign | Modifies the access path to a file.
Equivalent function: HChangeDir. |
HCopyRecord_55 | Copies the current record in a file to the current record of another file with the same structure.
Equivalent function: HCopyRecord |
HCreateView_55 | Creates a view on a Hyper File file.
Equivalent function: HCreateView. |
HDescribeKey | Describes a simple or composite key in a temporary file in Hyper File format.
Equivalent method: - Declare a variable of type Item Description.
- Define all the properties of the item with the HFSQL properties.
- Use HDescribeItem to validate the item creation.
|
HDescribeTrigger_55 | Adds or modifies a trigger on Hyper File.
Equivalent function: HDescribeTrigger |
HDuplicates | Checks the uniqueness of a key.
Equivalent operation: this function has been replaced by:- an automatic management of duplicates, allowing the user to enter a different value for the item generating a duplicate error.
- the HErrorDuplicates function.
|
HEndLock | Marks the end of file locking: all locked records are unlocked.
Equivalent functions: |
HImportText_55 | Imports a text file into a Hyper File file.
Equivalent function: HImportText. |
HIndex_55 | Reindexes a Hyper File file belonging to the current analysis.
Equivalent function: HIndex. |
HInfoGene | Returns general information about a Hyper File file.
Equivalent operation: this function has been replaced by:- functions (for example, HNbRec replaces the H.NbRec variable).
- HFSQL properties (for example, the Directory property replaces the H.Dir variable).
|
HInfoItem | Used to get information about an analysis item.
Equivalent operation: this function has been replaced by various HFSQL properties. |
HIsLocked | Checks whether the last WINDEV operation was run or not.
Equivalent operation: this function has been replaced by:- an automatic management of locks (that can be disabled if necessary),
- the HErrorLock function.
|
HReadFirstLock | Reads and locks the first record of the file according to the specified key.
Equivalent function: HReadFirst with constants for blocking management. |
HReadFirstNoLock | Reads the first record according to the specified key. If the file is locked, the record read is not locked.
Equivalent function: HReadFirst with constants for blocking management. |
HReadLastLock | Reads and locks the last record of the file according to the key passed as parameter.
Equivalent function: HReadLast with constants for blocking management. |
HReadLastNoLock | Reads the last file record according to the key passed as parameter. If the file is locked, the record read is not locked.
Equivalent function: HReadLast with constants for blocking management. |
HReadLock | Reads and locks a record according to the specified record number.
Equivalent function: HRead with constants for blocking management. |
HReadNextLock | Reads and locks the previous record according to the specified key.
Equivalent function: HReadNext with constants for blocking management. |
HReadNextNoLock | Reads the next record according to the specified key. If the file is locked, the record read is not locked.
Equivalent function: HReadNext with constants for blocking management. |
HReadNoLock | Reads the record according to the specified record number. If the file is locked, the record read is not locked.
Equivalent function: HRead with constants for blocking management. |
HReadPreviousLock | Reads and locks the previous record according to the specified key.
Equivalent function: HReadPrevious with constants for blocking management. |
HReadPreviousNoLock | Reads the previous record according to the specified key. If the file is locked, the record read is not locked.
Equivalent function: HReadPrevious with constants for blocking management. |
HReadSeekLock | Reads and locks the first record which value of the specified key is equal to or greater than the value of the search criterion.
Equivalent function: HReadSeek with constants for blocking management.
Equivalent function: HReadSeek with constants for blocking management. |
HReadSeekNoLock | Reads the first record which value of the specified key is equal to or greater than the value of the search criterion. If the file is locked, the record read is not locked.
Equivalent function: HReadSeek with constants for blocking management. |
HStartLock | Marks the beginning of the read lock on files. All the 'simple' read functions automatically lock the records that have been read.
Equivalent functions: |
HSubstName | Modifies the physical name of a data file.
Equivalent function: HChangeName. |
HViewToTable | Populates a Table control programmatically with a view.
Equivalent function: FileToMemoryTable. |