Jan 13, 2005 #1 Hawkide Technical User Oct 8, 2003 159 US I have a form named myForm There is a subform named mySubForm on myForm I want to put a textbox on myForm that displays the Comments field from the current record of the mySubForm I am struggling. TIA...
I have a form named myForm There is a subform named mySubForm on myForm I want to put a textbox on myForm that displays the Comments field from the current record of the mySubForm I am struggling. TIA...
Jan 13, 2005 #2 Blorf Programmer Dec 30, 2003 1,608 US Hi. On the on current event of your sub form, maybe add something like Forms!MyForm!MyTextbox = me.Comment That way, when you move from record to record in your subform, it will trigger the update. ChaZ Upvote 0 Downvote
Hi. On the on current event of your sub form, maybe add something like Forms!MyForm!MyTextbox = me.Comment That way, when you move from record to record in your subform, it will trigger the update. ChaZ
Jan 13, 2005 Thread starter #3 Hawkide Technical User Oct 8, 2003 159 US Thanks...Works great Upvote 0 Downvote