this loads questions but not answers cant figure it out
Private Sub Text2_Change()
Load Form5
Set Form5.txtTest = Text2
Form5.Show
End Sub
Private Sub Text3_Change()
Load Form5
Set Form5.txtTest = Text3
Form5.Show
End Sub
Public txtTest As TextBox
Private Sub Form_Activate()
Text1.Text = txtTest.Text
End Sub
Private Sub Text2_Change()
txtTest.Text = Text1.Text
End Sub
Private Sub Text3_Change()
txtTest.Text = Text3.Text
End Sub