True DB Checkbox Question
That would work, but im in an Oracle environment. The letter field that the checkbox is for isn't really something thats going to be written back to a table... there will be other columns with information in the grid that will be written back, but the checkbox is just for printing letters.
True DB Checkbox Question
Figured it out
what i did was:
set <recordsetname> = select field1, field2, null as letter ..<regularstuff>...
then once its created, loop through it and set the data = -1
with rstemp
for i = 1 to .recordcount
!letter = -1
.movenext
next i
end with
works like a charm - thanks again!