ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Managing external languages / Object functions
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,Select,+ (External language)
In french: Table, Select, +
Selects an element in a Table control.
Example
// In C
CALLWD("Table,Select,+,ProdTable,10");
// In Pascal
CALLWD('Table,Select,+,ProdTable,10');
// In VB
call CALLWD("Table,Select,+,ProdTable,10")
Syntax
Table,Select,+(<Table control> , <Index>)
<Table control>: Control name
Name of the Table control to be used.
<Index>: Character string
Number of the row to select. If this parameter is less than 0, the Table control based on a data file "moves up" to display the desired record. If the index is greater than the number of rows displayed, the Table control "moves down" to display the desired record. However, we recommend that you use Table,Display preceded by the positioning in the file.
Remarks
  • For a Table control populated programmatically, the index is relative to the entire Table control.
  • For a Table control based on a data file, the index is relative to the elements displayed.
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help