Avatar of Celina Sisi
Celina Sisi
 asked on

Copy field

Hi
i'm developping a project with delphi 7 and  I need to copy some fields from one table in paradox 9 to another table in paradox 9 .
Somebody help me please .
Delphi* paradox

Avatar of undefined
Last Comment
Geert G

8/22/2022 - Mon
Sinisa Vuk

Example depends on what you do - insert new record in second table or do edit...
Here is example of inserting new record. You must have two connection components - each to one for different paradox version.
Add two table component attach one to first connection component, second to second conn. comp.
...
Table2.Append;
Table1.Open;
Table2.FieldByName('Field1').AsInteger := Table1.FieldByName('Field8').AsInteger;
Table2.FieldByName('Field2').AsString := Table1.FieldByName('Field3').AsString;
Table2.Post;
...

Open in new window

Celina Sisi

ASKER
thanks
i want exactly copy the same data in one field from the first table to the second table
Sinisa Vuk

What do you think "exact" data? If field1 in Table 1 is "A" - then this value "A" is assign to field1 in Table2 - as is.
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck
Celina Sisi

ASKER
yes exactly like that
Sinisa Vuk

...then my example works... have you try it?
Celina Sisi

ASKER
i will try and i will tell you
thanks
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
ASKER CERTIFIED SOLUTION
Geert G

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Geert G

why are you using Paradox in this Millenium ?
Paradox is from days long gone.
Celina Sisi

ASKER
you are right but i prefere it
Geert G

you prefer Paradox ?
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23