Thoughts from Dan Miser RSS 2.0
# Tuesday, September 14, 2004
Yup, it's time to talk about ActiveForms again. :-)

If you're using ActiveForms, then you need to know about an ugly little secret. If you use MyDelphiForm.ActiveControl := Edit1, then you will get an exception stating 'Cannot focus a disabled or invisible window'. The reason for this is due to the implementation of TCustomForm.SetActiveControl. This setter method is called when you try to set ActiveControl on a form. The first thing it does is this:


    if not ((Control = nil) or (Control <> Self) and
      (GetParentForm(Control) = Self) and ((csLoading in ComponentState) or
        Control.CanFocus)) then
      raise EInvalidOperation.Create(SCannotFocus);
Note the part where it is trying to assert that the root ParentForm for the Control you are trying to set focus to is the same as the current form. This works fine in regular windows applications, but unfortunately in ActiveForms, the root ParentForm is the actual ActiveForm. Most people use that form as nothing more than a container to then host their forms inside. I wrote about this technique in a previous Delphi Informant, and it has been posted plenty of places on the Internet as well (e.g. Conrad Hermann had the first mention of this that I can remember).

The workaround is to use code like this to set the ActiveControl:


var
  ParentForm: TCustomForm;
begin
  ParentForm := GetParentForm(Self);
  ParentForm.ActiveControl := Edit1;
Tuesday, September 14, 2004 10:37:00 AM (Central Daylight Time, UTC-05:00)  #    Comments [1] -
Delphi
Tracked by:
http://9nx-information.info/56745078/city-of-shreveport-la.html [Pingback]
http://9nk-information.info/80452457/index.html [Pingback]
http://9nh-information.info/05340442/index.html [Pingback]
http://9nw-information.info/69403901/index.html [Pingback]
http://9nu-information.info/82768778/competitor-analysis-of-mobile-phone-market.... [Pingback]
http://9nw-information.info/09803753/dr-churgan-s-blue-book.html [Pingback]
http://9nf-information.info/01661961/index.html [Pingback]
http://9nb-information.info/51084435/clip-art-christian.html [Pingback]
http://9nf-information.info/46741657/index.html [Pingback]
http://9nm-information.info/20083982/rahu-occupy-9th-house-in-birthchart.html [Pingback]
http://9nd-information.info/77029181/index.html [Pingback]
http://9nf-information.info/03496719/school-couselors-and-job-satisfaction.html [Pingback]
http://9nn-information.info/27576109/index.html [Pingback]
http://9ol-information.info/19419942/index.html [Pingback]
http://9qc-information.info/21571560/festa-capodanno-nudista-naturista-nord-ital... [Pingback]
http://9oj-information.info/81271466/index.html [Pingback]
http://9ok-information.info/00651674/index.html [Pingback]
http://9qe-information.info/33822326/index.html [Pingback]
http://9qa-information.info/76618324/index.html [Pingback]
http://9ou-information.info/37752816/index.html [Pingback]
http://9ox-information.info/44562565/index.html [Pingback]
http://9sh-information.info/84922596/italia-gratis.html [Pingback]
http://9ri-information.info/21514911/w-hotel-san-diego.html [Pingback]
http://9rq-information.info/31685333/index.html [Pingback]
http://9rs-information.info/66400445/index.html [Pingback]
http://9so-information.info/16683787/busty-dolly.html [Pingback]
http://9sa-information.info/98626803/index.html [Pingback]
http://9st-information.info/71308919/foto-gratis-uomo-maturo-net.html [Pingback]
http://9rr-information.info/27104078/index.html [Pingback]
http://9uaek-le-informazioni.info/78427383/index.html [Pingback]
http://9uaff-le-informazioni.info/23459229/tomb-raider-game.html [Pingback]
http://9uaeh-le-informazioni.info/07593797/index.html [Pingback]
http://9uafp-le-informazioni.info/66716608/index.html [Pingback]
http://9uafa-le-informazioni.info/24836104/index.html [Pingback]
http://9uaep-le-informazioni.info/08497240/telefilm-ris.html [Pingback]
http://9uaeo-le-informazioni.info/61572099/index.html [Pingback]
http://9uafg-le-informazioni.info/29828991/index.html [Pingback]
http://9uaga-le-informazioni.info/43069373/index.html [Pingback]
http://9uagt-le-informazioni.info/54151441/index.html [Pingback]
http://9uahc-le-informazioni.info/75129033/index.html [Pingback]
http://9uahj-le-informazioni.info/05557242/compagno-fidanzato-uomo.html [Pingback]
http://9uahe-le-informazioni.info/04019432/index.html [Pingback]
http://9uahd-le-informazioni.info/36287411/index.html [Pingback]
http://9uaho-le-informazioni.info/66712017/borsa-nasdaq.html [Pingback]
http://9uahf-le-informazioni.info/91413794/chirurgia-ginecologica.html [Pingback]
http://9uage-le-informazioni.info/79609653/index.html [Pingback]
http://9uahg-le-informazioni.info/79967790/index.html [Pingback]
Thursday, February 03, 2005 9:58:00 AM (Central Standard Time, UTC-06:00)
This little snippet of code has just saved me a couple of hours of faffing about. It's worth noting that you get exactly the same problem if you have a form who's parent is another form. I use this method rather than frames as frames seem to break a lot of third party components.
Comments are closed.
Navigation
Archive
<February 2012>
SunMonTueWedThuFriSat
2930311234
567891011
12131415161718
19202122232425
26272829123
45678910
About the author/Disclaimer

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2012
Dan Miser
Sign In
Statistics
Total Posts: 375
This Year: 3
This Month: 0
This Week: 0
Comments: 654
Themes
Pick a theme:
All Content © 2012, Dan Miser
DasBlog theme 'Business' created by Christoph De Baene (delarou)