I had question about vb.net. I know normally this is simple. But in this case it's dificult. Let me explain this. I had three forms. Form1 is mdi parent form. Others 2 parent forms are child forms which named form2 and form3. I want to send form3 text box value to the form2 textbox when form3 close time.
In normal situation (not MDI child or parent) it's easy to send data :
form3.textbox1.text=form2.textbox1.text
me.close()
But in my case I used above code. But it doesn't work. please help me with more code examples. I appreciate it :)