This is probably a simple question, but how would I get the value of, say, the string 's_text' on form2 into the string 's_text2' on form1?
Printable View
This is probably a simple question, but how would I get the value of, say, the string 's_text' on form2 into the string 's_text2' on form1?
There are lots of different ways of doing this but basically you just pass a reference of form2 to form1 and then it can access any instance information you need. Do a search in the VB.NET section and you should come up with some examples.
Actually, a friend reminded me about modules. I feel really stupid. But hey, I'm still a beginner, I'm allowed to be stupid, right?