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,Search (External language)
In french: Table,Cherche
Searches for a value in a Table control populated programmatically. It is an exact-match search.
Remark: This function must not be used for a Table control based on a data file.
Example
// In C
CALLWD("Table,Search,Prod,000002");
// In Pascal
CALLWD('Table,Search,Prod,000002');
// In VB
call CALLWD("Table,Search,Prod,000002")
Syntax
Table,Search(<Column name> , <Sought value>)
<Column name>: Character string
Name of column where the search will be performed.
<Sought value>: Character string
Value sought in the column. This value must have the same size as the value of the sought column.
Remarks
Table,Search returns in WdInt:
  • the index of the table element matching the search,
  • -1 if the sought string is not found.
Minimum version required
  • Version 14
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help