copy and paste

kitty77

Registered User.
Local time
Today, 00:27
Joined
May 27, 2019
Messages
715
How can I create a button that copies the info from that field and pastes it into another field?
All from a form.
 
Take a look in the "Similar Threads" list below this post. At least a couple of them relate to programmed copy/paste actions. It's a great resource that sometimes turns out to be exactly what you needed.
 
In access you almost never need to copy and paste. Instead you directly set the value of a field or control. However, copies data from one field to another hints at a problem, since in a database rarely does information get repeated in two places.

The code is a simple as placing a button on a form and creating an on click procedure.
me.SomeField2 = me.someField1
 

Users who are viewing this thread

Back
Top Bottom