ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL functions
  • Displaying the result in a List Box or Combo Box control
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
HListQueryParameter (Function)
In french: HListeParamRequête
ODBCNot available with this kind of connection
Returns the list of parameters for a query created in the query editor.
Example
// Retrieve the parameters of QRY_CustomerZip
ParamList is string
ParamList = HListQueryParameter(QRY_CustomerZip)
 
// Adds the list of parameters into COMBO_COMBO1
ListAdd(COMBO_COMBO1, ParamList)
Syntax
<Result> = HListQueryParameter(<Query>)
<Result>: Character string
List of query parameters. The different parameters are separated by CR characters (Carriage Return).
<Query>: Character string
Name of a query created with the query editor. This name can correspond to:
  • the logical name of query defined in the editor.
  • the name and full (or relative) path of the query (".WDR" file). A UNC path can be used.
Remarks

Displaying the result in a List Box or Combo Box control

<Result> can be directly assigned to a List Box or Combo Box control by ListAdd. Each line will have the name of one of the query parameters.
Business / UI classification: Business Logic
Component: wd290hf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/06/2023

Send a report | Local help