|
|
|
|
|
- Binding between a control and a WLanguage variable or between a control and a data file item
- Binding to an item: types of link
- Miscellaneous
FileToPage (Function) In french: FichierVersPage
Not available with this kind of connection
Automatically updates the controls of a page with: - the values of the bound items in the current record (loaded in memory) of the data file described in the data model editor. This operation is performed regardless of the state of the controls (grayed, inactive or invisible).
- the values of the bound WLanguage variables. This operation is performed regardless of the state of the controls (grayed, inactive or invisible).
Remark: FileToPage does not read records on the data file. The value of the record loaded in memory is used to update the controls. Therefore, a record must be loaded in memory previously (with HRead, HReadSeek, HReadFirst, etc.). HReadSeekFirst(CUSTOMER, NAME, "PAUL")
IF HFound() = True THEN FileToPage()
HReadFirst(CUSTOMER, NAME)
FileToPage()
Syntax
FileToPage([<Page> [, <Source>]])
<Page>: Page name Name of the page where the controls must be updated with the values of the current record in the data file. If this parameter is not specified or is an empty string (""), the page that contains the current code is used.
<Source>: Optional character string Name of the source the controls to be updated are bound to. This source can be:- The name of a data file: only the controls bound to the items of the data file are taken into account.
- The name of a WLanguage variable: only the controls bound to the WLanguage variable are taken into account.
Remarks: - If the name of the variable is enclosed in quotes, the control will be bound to the specified variable.
- If the name of the variable is not enclosed in quotes, the control will be bound to the variable data (e.g., a variable containing the name of another variable).
If this name is not specified, all the page controls bound to a data file item described in the data model editor or to a WLanguage variable will be taken into account. Remarks Binding between a control and a WLanguage variable or between a control and a data file item The binding between a control and a WLanguage variable or between a control and a data file item can be determined: - In the editor, in the control description window ("Binding" tab).
- Programmatically, with the DataBinding property.
Binding to an item: types of link There are two types of bindings between a control and an item - direct binding: In this case, FileToPage transfers the value of the items from the record loaded in memory to the bound control, without reading any values.
- binding by reading the records in the associated data file.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|