|
|
|
|
|
- Displaying the result in a List Box or Combo Box control
<Source>.ListQueryParameter (Function) In french: <Source>.ListeParamRequête
Not available with this kind of connection
Returns the list of parameters for a query created in the query editor. // Retrieve the parameters of QRY_CustomerZip ParamList is string ParamList = QRY_CustomerZip.ListQueryParameter() Â // Adds the list of parameters into COMBO_COMBO1 COMBO_COMBO1.Add(ParamList)
Syntax
<Result> = <Source>.ListQueryParameter()
<Result>: Character string List of query parameters. The different parameters are separated by CR characters (Carriage Return). <Source>: Type corresponding to the specified source
Name of a query created with the query editor. This name corresponds to the logical name of the query defined in the editor. 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 <List Box>.Add. Each line will have the name of one of the query parameters. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|