Data Propagation

  • Thread starter Thread starter Michael Stengel via AccessMonster.com
  • Start date Start date
M

Michael Stengel via AccessMonster.com

On a form I can have a command button set up to create a new record. Anyone
know how to set up a button to creat a new record, but proppgate certain
fields with information from previous record?
 
If you want to retain only a few fields:
On the AfterUpdate event of that control try
const cQuote=""""
me!ControlName.DefaultValue = cQuote & Me!ControlName.Value & cQuote

If you are looking to copy a record over to a new record, try
(e-mail address removed) and search for the "Carry data over to a new Record"
article.

Hope that helps
 

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