ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Managing external languages / Object functions
  • Displaying a Table control populated programmatically
  • Displaying a Table control based on a data file
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Table,Display (External language)
In french: Table,Affiche
Refreshes the Table control. The calculated controls are recalculated. The position in the Table control is set according to the current position in the data file.
Example
// In C
CALLWD("Table,Display,ProductTab,10");
// In Pascal
CALLWD('Table,Display,ProductTab,10');
// In VB
call CALLWD("Table,Display,ProductTab,10")
Syntax
Table,Display(<Table control> , <Index>)
<Table control>: Control name
Name of the Table control to be used.
<Index>: Character string
Index of the element to redisplay or character indicating the action to perform.
Remarks

Displaying a Table control populated programmatically

  • If <Index> is specified, Table, Display redisplays the row whose index is specified.
  • If <Index>=P, <Index>=T or <Index>=*, Table, Display redisplays the elements currently displayed.
  • Table, Display is used to recalculate the calculated controls.

Displaying a Table control based on a data file

  • If <Index> is specified, Table, Display redisplays the row whose index is specified.
  • If <Index>=P, Table,Display redisplays the elements currently displayed in the Table control. This is used to refresh the display (after a write operation performed in the file by Table,Save for instance)
  • If <Index>=T, Table,Display redisplays the Table control from the current element in the file. It is thus possible to display the Table control from a given position.
For example, to display the records corresponding to a search.
  1. The search is performed (HReadSeek).
  2. The result is displayed by Table,Display.
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help