kyliel89045886
03-09-2015
I have the user imputing text into separate text boxes on the first page. I want to be able to display the text from all text boxes into one text box on the second page. Thanks.
pauly225
04-09-2015
you can place at the exit event of each of page 1 textBoxes
secondPageTextBoxName.rawValue = textBox1ToDisplay.rawValue + " " + textBox2ToDisplay.rawValue + "," + textBox3ToDisplay.rawValue