Articles   Members Online:
-Article/Tip Search
-News Group Search over 21 Million news group articles.
-Delphi/Pascal
-CBuilder/C++
-C#Builder/C#
-JBuilder/Java
-Kylix
Member Area
-Home
-Account Center
-Top 10 NEW!!
-Submit Article/Tip
-Forums Upgraded!!
-My Articles
-Edit Information
-Login/Logout
-Become a Member
-Why sign up!
-Newsletter
-Chat Online!
-Indexes NEW!!
Employment
-Build your resume
-Find a job
-Post a job
-Resume Search
Contacts
-Contacts
-Feedbacks
-Link to us
-Privacy/Disclaimer
Embarcadero
Visit Embarcadero
Embarcadero Community
JEDI
Links
How to create only one instance of a MDI child form (2) Turn on/off line numbers in source code. Switch to Orginial background IDE or DSP color Comment or reply to this aritlce/tip for discussion. Bookmark this article to my favorite article(s). Print this article
30-Aug-02
Category
Others
Language
Delphi All Versions
Views
65
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Tomas Rutkauskas

I am writing a MDI application. In this application, I just want to create one 
instance of the MDI child form. That is, if the user clicks New the first time, a 
MDI child form is created, but on subsequent click, no MDI child will be created. 
How can I do this and how can I refer to the MDI child that I have created.

Answer:

I assume you know the method to create an instance of a MDIChild form, but I'm 
going to go through it just in case:

Create your form, set its formstyle property to fsMDIChild, remove it from the 
autocreate list in your Project|Options.
Use the following code to create the form at run-time (I'm using Button1.Click to 
create the event):


1   procedure TMainForm.Button1Click(Sender: TObject);
2   var
3     MyChildForm: TMDIChild {where TMDIChild is TNameOfYourForm}
4   begin
5     MyChildForm := TMDIChild.Create(Application);
6   end;



Now, to ensure that only 1 instance of a MDIChild is created change the above code 
to read:


7   begin
8     if MDIChildCount < 1 then
9       MyChildForm := TMDIChild.Create(Application);
10  end;



This code will ensure that only one MDIChild can be open at a given time. Remember 
to place Action:=caFree in the OnClose event handler of your MDIChild to free 
memory and resources when it's closed.

To access properties of your MDIChild (Even though there's only going to be 1 in 
existence) you must use the following type of code (Here an event of the MDIParent 
is going to disable a component on the MDIChild):


11  procedure TMainForm.TurnItOffClick(Sender: TObject);
12  begin
13    MyChildForm(ActiveMDIChild).Button1.Enabled := False;
14  end;



Now, you didn't state whether you only wanted 1 MDIChild form open in the parent form or only 1 of each particular type. If it's the latter, you'll need to access the classes of all your MDI children to see if an instance already exists.

			
Vote: How useful do you find this Article/Tip?
Bad Excellent
1 2 3 4 5 6 7 8 9 10

 

Advertisement
Share this page
Advertisement
Download from Google

Copyright © Mendozi Enterprises LLC