Cut and Paste

  • Thread starter Thread starter Jone
  • Start date Start date
J

Jone

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 ?
 
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.
 
Back
Top