B
Bernie Yaeger
If my table contains 10 row, with 3 matching the first select, will all 10
again be evaluated on the next select? Here's what I mean:
irows = dshistd.Tables(0).Select("bipad = '1234'")
If, later, I do this
irows = dshistd.Tables(0).Select("bipad = '5678'")
will I get those that match out of the original 10 or, if I do nothing to
clear the first select, will dshistd.tables(0) only have rows with bipad =
'1234' to offer? If so, what it the correct method of clearing the select?
Thanks for any help.
Bernie Yaeger
again be evaluated on the next select? Here's what I mean:
irows = dshistd.Tables(0).Select("bipad = '1234'")
If, later, I do this
irows = dshistd.Tables(0).Select("bipad = '5678'")
will I get those that match out of the original 10 or, if I do nothing to
clear the first select, will dshistd.tables(0) only have rows with bipad =
'1234' to offer? If so, what it the correct method of clearing the select?
Thanks for any help.
Bernie Yaeger