1

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

ml.
  • 163
  • 1
  • 4
  • 15

1 Answers1

2

You can use the Clone method like this:

ADOQuery1.Clone(ADOQuery2);

I hope this will help.

Issam Ali
  • 1,703
  • 3
  • 15
  • 35