I have a main form where one of the text fields is ‘Title’. When you click on one of the buttons, a check list form opens up where once again, one of the text fields is ‘Title’, which is the same title from the previous form. However this checklist form does not contain every entry from the main form, it creates entries per main form item as required. What i want to do is carry over the ‘Title’ field from the main form to the checklist form so users don’t have to enter repetitive data, but i am not sure how to do this.
i tried putting in the button click procedure that brings up the main form, a line of code that does frmcheck.txttitle.text = me.txttitle.text but it gives me object must have focus error… so since the control has to have focus i tried to do it in the frmcheck_Load routine, but i got the same error. how can i go about doing this?