ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / Managing external languages / Object functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Screen,FileToScreen (External language)
In french: Ecran,FichierVersEcran
Updates the controls in the window with the values from the bound items in the data file.
Example
// En C
HLitPremier("CLIENT","NOM")
if!HEnDehors() {
APPELWD("Ecran,FichierVersEcran");
else
APPELWD("Erreur,Fichier vide");
}
// En Pascal
HLitPremier("CLIENT","NOM");
If not HEnDehors() then APPELWD('Ecran,'FichierVersEcran')
else APPELWD('ERREUR,Fichier vide');
// En VB
if not HEnDehors() then Call APPELWD("Ecran,FichierVersEcran")
else call APPELWD("ERREUR,Fichier vide")
End If
Syntax
Screen,FileToScreen()
Remarks
  • Screen,FileToScreen does not read the file. The controls are initialized with the record loaded in memory. A record must necessarily be loaded in memory before calling this function.
  • In the case of a direct link, Ecran,FichierVersEcran transfers the value of the fields in the record loaded into memory to the linked fields, without reading them.
  • In case of link with search in a linked file, the search is performed in the linked file before transferring the value of the items into the control.
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help