Jim,

I've checked it further and found that your on row save eep needs to be
eliminated and your insert command need to be part of the exit eep for your
last field.

skip to taskdesc
RECALC
SET VAR vftbl = (#FORM_TABLENAME)
SET VAR vftbl = (.vftbl + 'r')
insert into .vftbl (TaskDesc,TaskRecDate,TaskComDate,TaskType,TaskPiority)
values (.vTaskDesc,.vTaskRecDate,.vTaskComDate,.vTaskType,.vTaskPiority)
saverow
newrow
return

Or

You have a data type not correctly defined in you vars in the form (like
text when it should be date?) which is causing the insert to fail.

Disregard the recommendation in the previous email about changing the
HELPSKIP.EEP.

The error message about memory occurs because the exit eep on the last field
can not complete running before the on row save eep runs.  I created this
error in my test db.

I also incorrectly defined a date var to be a text var that was part of the
insert and found that upon it failing I'd get the same error message.


Best regards,

Oma



Reply via email to