method InputList(ControlName: String, Prompt: String[, AllowEmpty: Boolean, UseExactMatch: Boolean, Value1: String, ...])
Define a combo edit control on a scripted form that allows selection from a defined set of values.
InputList method syntax has these named arguments:
Parameter |
Description |
|---|---|
Control Name |
Required. Name of the control. Must be a valid MaxBasic identifier. |
Prompt |
Required. Prompt text to display to left of the control. |
Allow Empty |
Optional. Determines if the Lookup can be cleared after a value has been selected, defaults to False. |
Use Exact Match |
Optional Determines if the Lookup can accept and return values not in the code list, defaults to True. |
Value(s) |
Optional. A string list of parameter values, with values separated by a comma (,). |
See also MaxBasic InputList function and Input Grid InputList method.