marc
|
| Posted: 08/04/2001, 3:43 AM |
|
i'm trying to create a grid with SEARCH form with two fields (OR) and i get
a form with only the first field
is it a bug or something wrong in my code?
|
|
|
 |
Walker P.
|
| Posted: 08/04/2001, 12:04 PM |
|
When you use the 'OR' option when creating a search using the wizard, the
resultant form has only one field into which you can enter search criteria
for the fields to be OR'ed. If you want to have a field for all the columns
used in the OR, create the search using the 'AND' operator or manually then
in the 'Open' event of the grid form, enter code to swap 'AND' with 'OR'
example ASP code:
sWhere = replace (sWhere, "AND", "OR")
Walker P.
CC Support
|
|
|
 |
|