the subject tells it all
i want to be able to access multiple form created by my main form1 without closing the one and opening the other one..
how can this be achieved?
Are you talking about creating a multi-window form (MDI [Multi Document Interface]). This is where the main form has children forms. You can open of close any child windows but when you close the parent form, everything closes.
The parent's FormStyle property should be set to fsMDIForm. The other forms should be child forms so their FormStyle property should be set to fsMDIChild.
James P. Cottingham
When a man sits with a pretty girl for an hour, it seems like a minute. But let him sit on a hot stove for a minute and it's longer than any hour. That's relativity. [tab][tab]Albert Einstein explaining his Theory of Relativity to a group of journalists.
i know about MDI...and i do not want that...
what i want is from an SDI application to open from the menu to different forms and to be able to access the both without closing the one or the other
Just show() the form from the main form? Showmodal() makes it so u can't use any other forms till u close it. but show() should still allow you to access other forms.
Perhaps try changing the border style to fixed toolbar or sizable toolbar? [Thanks in advance|Hope I helped you] Exodus300 World-Wide Alliance of Evil and Twisted People
[red]"Experimentation by Example is the best learning tool" - Exodus300[/red]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.