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,Get (External language)
In french: Table,Récupère
Retrieves the value of a given element or the value of the selected element in a table.
Example
// In C
CALLWD("Table,Get,ProdTable");
strcpy(Value,WDString);
// In Pascal
CALLWD('Table,Get,ProdTable');
Value:=WdString;
// In VB
call CALLWD("Table,Get,ProdTable")
Value=WdString
Syntax
Table,Get(<Table name> [, <Subscript>])
<Table name>: Character string
Name of the table or column.
<Subscript>: Optional character string
Subscript of the element in the table.
  • If this parameter is not specified, Table, Get returns the value of the current element in the table.
  • If this parameter is specified, Table,Get returns the value of the element whose subscript is specified.
Remarks
The value of the retrieved element is contained in WdString. The element subscript is contained in WdInt.
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 04/06/2023

Send a report | Local help