August 18, 2021 at 3:30 pm
#95195
Member
some how this code not correct – I created Form5 as trial form to simulate a paltalk room so to run and answer questions but the code only brings the answer into the text box for question and answer does not bring in the actual answer
Form4 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 Form5 Public txtTest As TextBox Private Sub Form_Activate() Text1.Text = txtTest.Text Text6.Text = txtTest.Text End Sub Private Sub Text2_Change() txtTest.Text = Text1.Text End Sub Private Sub Text6_Change() txtTest.Text = Text6.Text End Sub