J Jone Dec 11, 2007 #1 What code do write when I want to cut form a text box on my form and paste it in a subform on my form ?
What code do write when I want to cut form a text box on my form and paste it in a subform on my form ?
K Klatuu Dec 11, 2007 #2 Since I don't know how your form works, I can't say where to put the code, maybe in the Click event of a command button to do this: Me.SubformControlName.Form.SomeControl = Me.MyTextBox Note that SubformControlName is the name of the subform control on your form, NOT the name of the form being used as the subform.
Since I don't know how your form works, I can't say where to put the code, maybe in the Click event of a command button to do this: Me.SubformControlName.Form.SomeControl = Me.MyTextBox Note that SubformControlName is the name of the subform control on your form, NOT the name of the form being used as the subform.