Hi,
I would like to delete values in fileds but not all record. I have one text field and one number filed. They are not keys. I've created report and write code in it and code looks like this:
IF (object.txtFiled <> '') OR (object.intField <> 0) THEN
BEGIN
object.txtFiled := '';
object.intField := 0;
END;
It works just fine but I would like to use delete or clear statement if is possible
Answers
Try the MODIFYALL command, so you don't have to loop through the records. See the C/SIDE reference guide for syntax details.
RIS Plus, LLC
RIS Plus, LLC