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
Table,Search (External language)
In french: Table,Cherche
Searches for a value in a Table control populated programmatically. It is an exact-match search.
Note: This function must not be used for a Table based on a data file field.
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> , <Search value>)
<Column name>: Character string
Name of the column to be searched.
<Search 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: 09/30/2024

Send a report | Local help