hello,
My form contains fields from 2 tables (Customer and File).
My form is linked to Customer (sourcetable). I want to add a new record with fields from File. If I try with:
recField.RESET;
CLEAR(recField);
recField.INSERT;
recField.ID:=100;
recOuder.Function:='DD';
recOuder.modify;
COMMIT;
Won't work!!
what to do?
0
Comments
http://www.mibuso.com/forum/viewtopic.php?t=9441
Some comments on your code: No need to do an insert and then a modify. In this case only insert is needed. Best is always to use INSERT(TRUE) except when you're you don't want it.
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!