how to transfer data between forms
-
what is the easiest way to transfer values from child form to parent form?
modified on Thursday, April 30, 2009 7:10 AM
-
what is the easiest way to transfer values from child form to parent form?
modified on Thursday, April 30, 2009 7:10 AM
rajulama wrote:
what is the easiest way to transfer values from child form to parent form?
Forms are classes yes? These means at runtime they are objects yes? Therefore we can rewrite your question thus: what is the easiest way to transfer values from child class to parent class. what is the easiest way to transfer values from child object to parent object. That said, if you do not know the answer to this then you need to obtain and study some beginner programming materials.
-
what is the easiest way to transfer values from child form to parent form?
modified on Thursday, April 30, 2009 7:10 AM
Well I can say if you make a class which is global then can tranfer parent form to child form . The easiest way is example if your form1 have textbox1.text = "....." and if you want to show that string in another form name form2 it would be label1.text=form1.textbox1.text then it would show the string have in your textbox1.text Hope it will help you