TfrmMain and TApplication - what are these for? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T21:47:56Z http://stackoverflow.com/feeds/question/351487 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/351487/tfrmmain-and-tapplication-what-are-these-for 3 TfrmMain and TApplication - what are these for? Jon Tackabury 2008-12-09T01:09:52Z 2008-12-09T02:16:12Z <p>I am a Delphi novice, but I'm trying to understand the relationship between TApplication and TfrmMain windows using Spy++. It seems that the TfrmMain window is the real window that has proper screen coordinates, but the TApplication window is the one that appears in the Windows taskbar. Also, they don't seem to be related to each other at all. One isn't the parent window of the other, so how are the windows linked together? And why is the non-UI window the one that gets the Windows taskbar button? Can any Delphi experts help me understand this?</p> http://stackoverflow.com/questions/351487/tfrmmain-and-tapplication-what-are-these-for/351504#351504 8 Answer by KiwiBastard for TfrmMain and TApplication - what are these for? KiwiBastard 2008-12-09T01:17:06Z 2008-12-09T01:17:06Z <p>TApplication is the class that encapsulates your application and handles things like the Windows Messaging. TfrmMain will be a subclass of TForm which will be your Applications "Main Form".</p> <p>So basically, TApplication is the controller so to speak and it owns and creates TfrmMain, and forwards messages to it, or any of it's children.</p> <p>Look in your projectname.pas file and you'll see something like:</p> <pre><code>program Project1; uses Forms, Unit1 in 'Unit1.pas' {Form1}; {$R *.RES} begin Application.Initialize; Application.CreateForm(TfrmMain, frmMain) ; Application.Run; end. </code></pre> <p>where Application is of type TApplication.</p> http://stackoverflow.com/questions/351487/tfrmmain-and-tapplication-what-are-these-for/351585#351585 1 Answer by Mick for TfrmMain and TApplication - what are these for? Mick 2008-12-09T02:16:12Z 2008-12-09T02:16:12Z <p>With applications made with versions of Delphi BEFORE Delphi 2007, the "secret window" would be the visible window in Vista's Flip 3D or preview. Here's a great article explaining how to compile Delphi applications on Delphi 2006 (and earlier) so that the "secret window" is not shown: <a href="http://www.installationexcellence.com/articles/VistaWithDelphi/Original/Index.html#Wheres_My_Induction" rel="nofollow">here</a></p>