Hi,
I'm hoping someone can help, I am struggling with getting this to work.
Basically I have a form with an unbound text box, in this text box I am putting in results from a test which I want to save so that when the form is opened again the information will still be there. I have tried doing this with a subform since the text box is cleared everytime I close the form. I have tried linking the child and master field so whatever is put in the text box will appear in the subform but it doesn't save it.
I'm hoping someone can help me out with this as I've run out of ideas.
The code I use to put the info into the text box is:
Thanks
I'm hoping someone can help, I am struggling with getting this to work.
Basically I have a form with an unbound text box, in this text box I am putting in results from a test which I want to save so that when the form is opened again the information will still be there. I have tried doing this with a subform since the text box is cleared everytime I close the form. I have tried linking the child and master field so whatever is put in the text box will appear in the subform but it doesn't save it.
I'm hoping someone can help me out with this as I've run out of ideas.
The code I use to put the info into the text box is:
Code:
Private sub Command35_Click()
Me.txtResults.Value = Date & " - " & Me.Combo2 & " - " & me.txtCorrect.Value & vbNewLine & me.txtResults.Value
End Sub
Thanks
