Hello,
In DataRow, it is possible to have all logical fields of a recordset to be set to .t.? For example, with an eval.
Thank you very much. Greetings.
Saludos,
Eduardo
Eduardo
Hello,
In DataRow, it is possible to have all logical fields of a recordset to be set to .t.? For example, with an eval.
Thank you very much. Greetings.
for n := 1 to oRec:FCount()
if ValType( oRec:FieldGet( n ) ) == "L"
oRec:FieldPut( n, .t. )
endif
next n