Enlighten me please...

BLeslie88

B Leslie
Local time
Today, 07:14
Joined
May 9, 2002
Messages
228
Trying to carry data from previous record to 'new record' ...

Ways for this...?

Now why do they allow a user to use CTRL ' to copy data down but give no way to the programmer to do it....???

Please enlighten this frustrated soul.

Thanks,
Brian
 
Well, if I understood what do you want...


Sub AddButton()

Dim a, b, c as String

a = TextBox1
b = TextBox2
c = TextBox3

DoCmd.GoToRecord , , acNewRec

TextBox1 = a
TextBox2 = b
TextBox3 = c

End Sub
 
Thank you!

ghudson, that thread, was exactly the remedy I needed!

maikon, thanks for the reply.

Thank you all.
 

Users who are viewing this thread

Back
Top Bottom