First off im not 100% sure if this is the right place, as its too do with Forms and VBA, so sorry if its in the wrong place.
I have a form (Dispatch) with a subform on it (Dispatch - Sub(Status)).
The "Dispatch" form has searchable data, whist the "Dispatch - Sub(Status)" subform is a data input form.
Would someone mind telling me how to code it so, when i Press "CMD_Button_do" it copys the data in Text_box_1 on the Dispatch form, to Text_box_2 on the Dispatch - Sub(Status) subform?
If you can help i would most apreciate it as currently its sending me insaine
cheers
michael
I have a form (Dispatch) with a subform on it (Dispatch - Sub(Status)).
The "Dispatch" form has searchable data, whist the "Dispatch - Sub(Status)" subform is a data input form.
Would someone mind telling me how to code it so, when i Press "CMD_Button_do" it copys the data in Text_box_1 on the Dispatch form, to Text_box_2 on the Dispatch - Sub(Status) subform?
Code:
Private Sub CMD_Button_do_Click()
(data from "Text_box_2" on "Dispatch - Sub(Status)" form) = (data from "Text_box_1" on "Dispatch" form)
End Sub
If you can help i would most apreciate it as currently its sending me insaine

cheers
michael