How to Display Data (Urgent)
-
How to Display data from Child form to Parent Form Control. Sanjit.rajbanshi@wlinktech.com
-
How to Display data from Child form to Parent Form Control. Sanjit.rajbanshi@wlinktech.com
Well, you mean pass data, I presume ? If the child is modal, just expose it as a property. Otherwise, use a delegate to pass it along.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
How to Display data from Child form to Parent Form Control. Sanjit.rajbanshi@wlinktech.com
I would suggest that create a property and assign this property in the child form. Use parent property to display at the required place
Regards, Jaiprakash M Bankolli jaiprakash.bankolli@gmail.com Blog: http://jaiprakash.blog.com/ Suggestions: http://jaitoimprove.blog.com/
-
How to Display data from Child form to Parent Form Control. Sanjit.rajbanshi@wlinktech.com
one way of doing that.. is to declare a object of parent form on the client form and access the properties of of parent from child through that object and do whatever u want to do. but u have to typecast that parent object on the child's parent object so that u get the same object reference other way of doing it (i think) is through delegates