Forms

  • Thread starter Thread starter tlarose
  • Start date Start date
T

tlarose

I have a data entry form in a database after i enter the data, i want to hit
a button and go to a phone log form that i created and have the record that i
just entered in the data entry form to be the record that shows up in the
phone log form. any suggestions?
 
tlarose said:
I have a data entry form in a database after i enter the data, i want to hit
a button and go to a phone log form that i created and have the record that i
just entered in the data entry form to be the record that shows up in the
phone log form. any suggestions?

How about opening the form in code and then copying the values between
the open forms?
Docmd.OpenForm "Form2"
Form2!Field1=Form1!Field2
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top