M
Meryl
Hi,
I have 2 tables - a prospective donor table of people I
mail out solicitations and a donor-registration table
that has the people who have made actual donations. When
someone makes a donation, I want to move the data from
one table (via a form) to the other. I read someone
else's post about this, but I'm getting a compile error.
I don't know VBA, so I'm muddling in the dark. Can you
look at this and see what I am doing wrong? Do I need a
DoCmd statment for every field that I am moving? Here is
my code so far
stDocName = "2003 Individual Donations"
DoCmd.OpenForm "Donor-Registration Form-US", acNormal
DoCmd.GoToRecord , , acNewRec
Forms!Donor-Registration Form-US.FirstName(s).Value =
Forms!Prospective-Donor-Reg-Test.First Name(s).Value
Thx.
I have 2 tables - a prospective donor table of people I
mail out solicitations and a donor-registration table
that has the people who have made actual donations. When
someone makes a donation, I want to move the data from
one table (via a form) to the other. I read someone
else's post about this, but I'm getting a compile error.
I don't know VBA, so I'm muddling in the dark. Can you
look at this and see what I am doing wrong? Do I need a
DoCmd statment for every field that I am moving? Here is
my code so far
stDocName = "2003 Individual Donations"
DoCmd.OpenForm "Donor-Registration Form-US", acNormal
DoCmd.GoToRecord , , acNewRec
Forms!Donor-Registration Form-US.FirstName(s).Value =
Forms!Prospective-Donor-Reg-Test.First Name(s).Value
Thx.