D
Derek
Hi
I have a field in a form whose value I want to transfer or
copy to a different field in a new record when I start a
new blank record. I've tried creating a VBA proceedure for
a new record button it goes like this:
Private Sub New_Record_Click()
Dim CopyValue As Integer
CopyValue = IntOldFieldValue
DoCmd.GoToRecord , , acNewRec
IntNewFieldValue = CopyValue
Exit_New_Record_Click:
Exit Sub
End Sub
I have no idea why this does not work help!
I have a field in a form whose value I want to transfer or
copy to a different field in a new record when I start a
new blank record. I've tried creating a VBA proceedure for
a new record button it goes like this:
Private Sub New_Record_Click()
Dim CopyValue As Integer
CopyValue = IntOldFieldValue
DoCmd.GoToRecord , , acNewRec
IntNewFieldValue = CopyValue
Exit_New_Record_Click:
Exit Sub
End Sub
I have no idea why this does not work help!