I have two dynamic tables. Table 1 contains a list of to do items and I
want to move items completed to another table (Table 2) using a button
that is incorporated into the table. I have broken the task down into
three sections:1. add a new row to Table 2 - this is working2. copy or
move the appropriate row to the new table - NOT WORKING3. delete the old
(now empty row) from Table 1 - not got to this yet.Here is the script
from the Click event: form1.Pg1.Table1.Row1.Btn_Completed::click -
(JavaS...