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 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 2.x
Views
74
User Rating
No Votes
# Votes
0
Replies
0
Publisher:
DSP, Administrator
Reference URL:
DKB
			Author: Tomas Rutkauskas

I want the form only to appear once on the user's desktop regardless of whether it 
has focus or not.

Answer:

1   procedure TfmMain.fmAboutClick(Sender: TObject);
2   begin
3     if not (ActiveMDIChild is TfmAboutBox) then
4       TfmAboutBox.Create(Application);
5   end;
6   
7   procedure TfmMain.fmAboutClick(Sender: TObject);
8   var
9     myAbout: TfmAboutBox;
10    i: integer;
11  begin
12    for i := 0 to Screen.FormCount - 1 do
13      if (Screen.Forms[i] is TfmAboutBox) then
14        myAbout := Screen.Forms[i] as TfmAboutBox; {Form Exists}
15    if myAbout = nil then {didn't find it so create it...}
16      myAbout = TfmAboutBox.Create(Application);
17    myAbout.Show;
18  end;


			
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