Hi, I am now doing a window form application which are contains several window form interfaces My question is that :
Firstly I enter texts in a text box of interface A (login page) , then I clicks a button to hide A and go to interface B.
At B, I click a button again to hide B and go to interface C. C contains another text box and here I wants to insert or copy the text from textbox at A to text box C. By the way, the texts in text box A seems like been cleared after I write the code "this.Hide".
How to solve this problem? Anyone have idea?
Below is the event flow:
A.hide,B.Show>> B.hide,C.show>> Copy textbox content at A to textbox C
my codes:
C.Text=A.Text; //It doesnt insert anyting after i execute
Hope someone can help, thanks in advance.