Hi,
I have a form where user enters an ID in a text box, the ID is actually 10 digits, but even if the user enters 5-6 digits , my code is supposed to pick tht and based on tthis it should populate a combobox with all relative products( product IDs). how do i do this ?
What is that i m supposed to specify (equivalent to the Sql syntax LIKE)???
in the second line how do i specify it?
Thanks so much in advance!!
I have a form where user enters an ID in a text box, the ID is actually 10 digits, but even if the user enters 5-6 digits , my code is supposed to pick tht and based on tthis it should populate a combobox with all relative products( product IDs). how do i do this ?
Code:
Form.RecordSource = "Select * from table1" Form.Filter = "ID='" & User entered id& "'" Form.FilterOn = True
in the second line how do i specify it?
Thanks so much in advance!!
Comment