Hi experts,
I have 2 tables TABLE1 and TABLE2, TABLE1 has a from, that form contains a button <Delete>. when i click delete button i insert TABLE1 records into TABLE2.
My question :
how can i delete that TABLE1 record after inserting in TABLE2.
i created a record variable TABLE2 = table2
DeleteButton OnPush()
table2.x := 1;
table2.y := 2;
IF table2.insert then begin
..................... (Need something here)
end;
*This post is locked for comments