wyrd Posted May 2, 2003 Posted May 2, 2003 (edited) How do I insure that a MDI Child Form is created only once? I don't want a certain form to be opened several times (that is, several versions of the same form is displayed) EDIT: Nevermind, I decided to use a simple tab page rather then MDI forms. Edited May 3, 2003 by wyrd Quote Gamer extraordinaire. Programmer wannabe.
hog Posted May 3, 2003 Posted May 3, 2003 Wyrd, I had the same problem and got around it by having a global boolean variable which is set to True when the child is first opened. Any attempt to open another child is ignored if the variable is True. Messy but works a treat in my app. Quote My website
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.