Calling .Parent from a form causes textbox problem, MDI
- by OR1614
I want to make a form contained in another form. The problem is the application is already a MDI, and you can't nest MDI's.
If I do
childFrm.Parent = parentForm
some controls behave oddly. For example, if you click on the text in the textbox, usually the text cursor appears where you clicked, but it doesn't, it just goes to the end of the text.
Any suggestions?
Thanks,