I'm porting some code to Delphi XE and noticed that if I use Application.Handle to get the handle of the program, Delphi throws me an error and refuses to compile, saying:

Undeclared identifier: 'Handle'

This same behavior happens when I try to call Application.ProcessMessages. I figure something must have gotten shifted around that wasn't listed in the Unicode Migration guide.

Where did the functions and variables for 'Application' go?

link|improve this question

feedback

1 Answer

up vote 12 down vote accepted

My psychic debugging powers tell me that this unit imports SvcMgr after it imports Forms and so the Application variable in SvcMgr takes the one that you want in Forms out of scope. Or perhaps the culprit is WebBroker or CtlPanel.

You can work out which it is by CTRL clicking on the Application variable at the point of the first error and you'll land in a unit that isn't Forms.

The solution is just to reorder your imports so that Forms comes in after the others.

On the other hand, my psychic debugging powers could be broken today!

link|improve this answer
1  
Reminds me of Windows.Bitmap hiding Graphics.Bitmap if you mess up the uses order. – CodeInChaos Feb 22 '11 at 21:12
@CodeInChaos Too true. Only it's really Windows.BITMAP yelling at you, "Don't use me! I'm the wrong one!". This is one area of the language that I feel is weak. Uses was done much better in Modula-2. – David Heffernan Feb 22 '11 at 21:15
David, you were pretty much spot on. The problem wasn't the USES clause, but rather that I had a 'with WebBrowser1 do begin ... Application.handle ... end'. It was using the 'Application' from the webbrowser object. THANKS! – Daisetsu Feb 22 '11 at 21:16
1  
Maybe Embarcadero could add a Warning or Hint if a WITH causes ambiguity (to a person, obviously not to the compiler) – Gerry Coll Feb 22 '11 at 23:20
1  
@Gerry Why just with? Ambiguous scoping occurs with implicit Self., local variables in nested procedures, uses clauses and probably many other situations. Maybe what we really need is namespaces! – David Heffernan Feb 23 '11 at 0:03
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.