"Application" global variable not recognized - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T05:35:54Z http://stackoverflow.com/feeds/question/249655 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/249655/application-global-variable-not-recognized 3 "Application" global variable not recognized psoul 2008-10-30T09:25:54Z 2008-10-30T11:56:38Z <p>I work on a large project in Delphi 5. Today, after merging two branches of the app together, one of the hundreds of units, UnitMain (the main form's unit, would you guess) stopped recognizing the Application global.</p> <p>This is a rather bizarre problem - I could get the program to compile by defining Application: TApplication in UnitMain, and setting that to the Application from our .dpr project file, but that leads to an access violation, which isn't much of a surprise with Application being the special thing it is.</p> <p>I'm hoping someone has faced the same problem before, or knows enough of Delphi VCL's inner workings to help me out here.</p> <pre><code>unit UnitMain; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Menus, ComCtrls, StdCtrls, cxButtons, ExtCtrls, IniFiles, ShellAPI, LMDControl, LMDBaseControl, LMDBaseGraphicControl, LMDGraphicControl, LMDScrollText, cxControls, cxContainer, cxListBox, Psock, NMFtp, db, DBTables, FileCtrl, Configs, cxHint, DSetFunc, OleCtrls, DsInformation, InterAppComm, ActnList, ADODB, OleServer, CRAXDRT_TLB; </code></pre> <p>The exact error is that the compiler does not recognize Application in this unit. For example, for a Application.ProcessMessages; call, the error is "Object or class type required". None of the other units has this problem.</p> http://stackoverflow.com/questions/249655/application-global-variable-not-recognized/249669#249669 2 Answer by Re0sless for "Application" global variable not recognized Re0sless 2008-10-30T09:35:08Z 2008-10-30T09:35:08Z <p>What units are in the uses clause at the top of the file? Application comes from the "Forms" unit.</p> <p>eg.</p> <pre><code>unit MyUnit; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms; </code></pre> http://stackoverflow.com/questions/249655/application-global-variable-not-recognized/249710#249710 14 Answer by Barry Kelly for "Application" global variable not recognized Barry Kelly 2008-10-30T09:58:17Z 2008-10-30T09:58:17Z <p>I think it is most likely that you have two symbols called "Application" in scope, and the one from the Forms unit isn't the active one. Make sure the Forms unit in the uses list comes after any prior unit that contains a symbol called Application.</p> <p>But, you need to provide more information. The exact error messages, etc.</p> http://stackoverflow.com/questions/249655/application-global-variable-not-recognized/249930#249930 7 Answer by Mike Sutton for "Application" global variable not recognized Mike Sutton 2008-10-30T11:56:38Z 2008-10-30T11:56:38Z <p>I'm pleased to see everythings working now, but I'll add that another way to solve such problems, especially if you don't want to rearrange your uses clauses is to prefix the unit name to whatever you want to use, eg.</p> <pre><code>Forms.Application.ProcessMessages; </code></pre>