IN-PROGRESS
An "autocomplete control" is a user interface element, often used in forms or applications, that provides suggestions or completions for user input as they type. The control predicts the rest of a word or phrase based on the characters entered by the user, offering a list of suggestions that match the input.
This control is commonly used to enhance user experience, reduce errors, and speed up data entry. Using Autocomplete controls users can benefit from predictive suggestions.
There are basically three steps to create an autocomplete control on the form:
Create a Datasource.
Bind your Datasource with a control.
Set the properties and perform the configurations for the autocomplete control
Steps to create an autocomplete control on the form to assist users in finding a person in EmpowerID.
On your Form Add an object of type String.
Double-click on it, rename it, and assign any name. In our case, I am naming it FirstName.
Drag and drop FirstName onto the Form Designer
Right-click on the Data Sources, select the Add Data Source option. The Add New Data Source dialog box will appear. Keep the first option selected and click on the Next button.
Give your Data Source a name, for example, dsPerson. Select Generated as your Data Source Type. From the Component Name, choose PersonSearch, and from the Method To Execute, select GetSearch (string textToSearch). Finally, click on the 'Finish' button.