i have nou 2 query´s TADOQuery and TADOQuery1 and i wouth like to update TADOQuery record´s from TADOQuery1 via code is it possible ?? they have the same field´s
Thank´s Ml
i have nou 2 query´s TADOQuery and TADOQuery1 and i wouth like to update TADOQuery record´s from TADOQuery1 via code is it possible ?? they have the same field´s
Thank´s Ml
You can use the Clone method like this:
ADOQuery1.Clone(ADOQuery2);
I hope this will help.