I'm having the same problems. here's my description of it:
on my 'search psage', i have a combobox (cbokwsrch) that i'm using to choose a range of values for a field (kw) in my table (input). the combo is liked to a table (tblKw) that has an autonumber index (column 0), and a column that lists the separation points between my ranges (column 1: 250, 500, 750, 1000, 1500, 2000). what i want in my search query criterion is something like:
between cbokwsrch(selected value -1) and cbokwsrch(selected value)
so if I choose 750 in the combobox, the search will return:
between 500 and 750.
if i choose 1500, it should return
between 1000 and 1500.
To do this, my combo is bound to column 0 (the autonumber), so i want:
between cbokwsrch.column(1, cbokwsrch-1) and cbokwsrch(1, cbokwsrch)
but in the build dialog for the criterion, i can't use the column property, and my ranges aren't consistent, so i can't bind the combo to column 1 and search:
between cbokwsrch and (cbokwsrch-500)
I hope this is clear, and i hope it's the same problem riggsd is having...