In testing cut/copy/paste for my program, I realized that all forms that are a child of my MDIparent1 form lose their cut/copy/paste abilities.
Is there a common reason for this? Is this something that I need to implement?
I show the child forms by using something along these lines:
I've found that the same Form1 does have cut/copy/paste in text boxes while not a MDIchild, by using the normal Ctrl+C, Ctrl+V.
Is there a common reason for this? Is this something that I need to implement?
I show the child forms by using something along these lines:
Code:
Form1.mdiparent = MDIparent1 Form1.show
Comment