jcrcarmo Posted December 17, 2005 Posted December 17, 2005 Hi folks, I was wondering what the code to do the following is: MDIParent form needs to load the text of a MS Word Document into a richTextBox located in MDIChild form. How do I accomplish that?? Thanks in advance, JC :) Quote
Cags Posted December 17, 2005 Posted December 17, 2005 If you declare the richtextbox as public you can access its properties from the mdi parent, however thats perhaps not the best method. You could create a public method called LoadText as part of the mdi child, you can then call the method from the mdi parent, which will then load the text into the richtextbox. Quote Anybody looking for a graduate programmer (Midlands, England)?
jcrcarmo Posted December 17, 2005 Author Posted December 17, 2005 Hi Cags, thanks for the tip. It worked! JC :) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.