A
Alex
I have a bound form with several fields. I need to copy one field value of
the current record to a new record when one is created using the navigation
buttons, not a command button. How can I make the default value for a new
record = the Model# field in the current record? I've tried several things,
the latest of which is:
Private Sub Form_Current()
If Me.NewRecord Then
[Forms]![NewPartInputfrm]![Model#].DefaultValue =
Forms![NewPartInputfrm]![Model#]
End If
At least I'm getting an error msg "type mismatch". I would think this would
be very simple, but I'm missing something. Thanks.
the current record to a new record when one is created using the navigation
buttons, not a command button. How can I make the default value for a new
record = the Model# field in the current record? I've tried several things,
the latest of which is:
Private Sub Form_Current()
If Me.NewRecord Then
[Forms]![NewPartInputfrm]![Model#].DefaultValue =
Forms![NewPartInputfrm]![Model#]
End If
At least I'm getting an error msg "type mismatch". I would think this would
be very simple, but I'm missing something. Thanks.