up vote 1 down vote favorite
1
share [g+] share [fb]

Ever since I upgraded to Delphi 2009, I am having terrible experience with TFrame descendants. Basically, the child components of the frame spills into the host form as object and that causes name crash, class not found etc.. In the dfm, the older Delphi used have have the frame as inline and the child components as inherited. Delphi 2009 IDE now expands the children as object.

Edit: I've seen it happen to multiple forms, but I can't reproduce it with small-scale demo application.

link|improve this question

I haven't had any trouble with that. Can you give an example? – Mason Wheeler Jun 23 '09 at 15:51
Same here - no problems with inherited frames. And I use them a lot. – Uwe Raabe Jun 23 '09 at 16:16
1  
sigh I've had bugs like that, that I can't reduce down to a simple POC. See if you can find some way to report this to QC. – Mason Wheeler Jun 23 '09 at 19:32
feedback

2 Answers

up vote 1 down vote accepted

I don't know what happened to your project, but I just created a brand new D2009 application with:
- a main Form,
- an Ancestor Frame holding an Edit1 and a Label1,
- a Child Frame descending from the Ancestor where I added a Label2 and an Edit2
- an instance of the ChildFrame placed onto the Main Form where I moved slightly the Label2.

Here's the very normal-looking resulting dfm:

object MyForm: TMyForm
  Left = 0
  Top = 0
  Caption = 'MyForm'
  ClientHeight = 286
  ClientWidth = 412
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  inline ChildFrame1: TChildFrame
    Left = 8
    Top = 8
    Width = 313
    Height = 240
    TabOrder = 0
    ExplicitLeft = 8
    ExplicitTop = 8
    ExplicitWidth = 313
    inherited Label2: TLabel
      Left = 162
      ExplicitLeft = 162
    end
  end
end
link|improve this answer
feedback

Are the parent forms properly added to the .dpr?

link|improve this answer
@Marco, yes they are added to dpr. – Eugene Yokota Jun 23 '09 at 21:13
feedback

Your Answer

 
or
required, but never shown

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