In deference to your desire, here is a way to do it via a macro that is
attached to the On Click property of a command button that you need to put
in the Detail section so that it can be clicked for the desired record:
Action: SetValue
Item: [NameOfPizzaControl].DefaultValue
Expression: [NameOfPizzaControl].Value
Action: GoToRecord
Record: New
If you attach the above macro to the On Click property of the command button
(in a continuous forms view of a form, the button will appear on each
record; click the button on the record that contains the "pizza" value you
want to be used in the new record) that is in the Detail section of the
form, the macro will set the Default Value of the "pizza" control to the
current value, and then it will create a new record -- and you'll see that
"pizza" value in the control in that new record.

Signature
Ken Snell
<MS ACCESS MVP>
>I guess I can, but I've used VBA code only very rarely and I'm a little
> intimidated by it. Would it be complicated?
[quoted text clipped - 25 lines]
>> > it
>> > would be greatly appreciated.
Slappy - 11 May 2008 18:28 GMT
Thanks Ken!
> In deference to your desire, here is a way to do it via a macro that is
> attached to the On Click property of a command button that you need to put
[quoted text clipped - 43 lines]
> >> > it
> >> > would be greatly appreciated.