I have a list box called CCList which displays a field form table based on a query
Each CC consists of 5charecter starting with a letter the rest is number (e.g.: A0214. D2145,Y0568 and etc...)
The list box is huge so the user needs to scroll down to find what they looking for.
To make it easier for the user I have created a textbox to perform a search.
I want the user to enter either the first letter or the item number in the text box and based on the user input the CCList should jump to that (input) item.
I was just wondering how I can do this.
Code:
SELECT CC.table1 FROM table1 ORDER BY CC.table1;
The list box is huge so the user needs to scroll down to find what they looking for.
To make it easier for the user I have created a textbox to perform a search.
I want the user to enter either the first letter or the item number in the text box and based on the user input the CCList should jump to that (input) item.
I was just wondering how I can do this.
Comment