Please help me
Using access 2003
I do have a form (continuous) that expand for me all products in a table name "[products]
I made a [textbox] in this form and it is unbounded
What i need is a botton that on click i want to find any part of the field where the [textbox]= [fieldname]---> get the focus on it and highlight it
I'm using this code that i found on this website
Application.Echo False
Me![fieldname].SetFocus
DoCmd.FindRecord textbox
Application.Echo True
this code works if the form is set to single form ..isn't wroking on the continuous form is there any other method??