lIncrFilter := .t.
lSeekWild := .t.
oBrw:cFilterFld := "CODE1+CODE2" como hacer?
Es posible?
[]'s
FWH2008 | xHarbour | BCC74 | SQLRDD
lIncrFilter := .t.
lSeekWild := .t.
oBrw:cFilterFld := "CODE1+CODE2" como hacer?
Es posible?
[]'s
In that case please use bFilterExp instead of cFilterFld.
Eg:
oBrw:bFilterExp := { |cExp| Upper( cExp ) $ FIELD1 + FIELD2 }
With bFilterExp we can have any complex filter conditions:
Eg:
oBrw:bFilterExp := { |cExp| Upper( cExp ) $ FIELD1 .AND. .NOT. ( Upper( cExp ) $ FIELD2 ) }