Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I can' t realize this thing. I have a component in DELPHI that includes 2 other components: a Firemonkey Layout and inside of that an dynamic array of TLayout which includes a TRectangle. This is achieved through the property BarNumber.

I have lots of problems about Design Time vs. Runtime behaviour, this is due to the DFM (FMX in Firemonkey) that stores the subcomponents as part of the Object. Now. This is the code of the On Create part.

constructor TFluffyTable.Create(Owner: TComponent);
var
i: integer;
begin
  inherited Create(Owner);

  Width:=300;
  Height:= 160;
  BarNumber:=100;
  SetLength(Column, FBarNumber);
  for i := 0 to (FBarNumber-1) do
  begin
     Column[i]:= TColumn.Create(Self);
     Column[i].Name:= 'Column_' + IntToStr(i);
     Column[i].Parent:= Self;
     Column[i].Height:=Height;
     Column[i].Width:=Width/FBarNumber;
     Column[i].Align:= TAlignLayout.alMostLeft;
   end;
  end;

If I register the component and I use it in design time I get the correct number of bars displayed. But if I run the program with the component, I get twice the number of bars, since the EXE loads the values. I managed to solve this with

   if not (csDesigning in ComponentState) then

just before the for loop. But I can't see, obviously, the BARS in design mode. Well I can stand that if this is the only solution. That's not over..! For a strange reason, The only one place I can set my values for Width, Height and BarNumber is that part of code. If I set them in the object inspector they won't be considered and reset to default when I run the program. (BarNumber is a variable which reads and writes on FBarNumber)

In short: I don't know how to handle and manage my component to make BarNumber and other properties to be set in design time, and to see the correct number of bars in Runtime. Thank you so much.

share|improve this question

2 Answers

I had the similar problem. I used stored property to avoid this problem. Example:

constructor TMachine.Create(AOwner: TComponent);
begin
  inherited;
  self.Width := 50;
  self.Height := 90;

  // create machine rectangle and set default properties
  FMachine := TRectangle.Create(self);
  FMachine.Parent := self;
  FMachine.Height := 50;
  FMachine.Align := TAlignLayout.alBottom;
  FMachine.Fill.Color := TAlphaColorRec.red;
  FMachine.Stroke.Color := TAlphaColorRec.Black;
  FMachine.Stroke.Thickness := 3;
  FMachine.Stored := false;
end;
share|improve this answer

You have to make sure that you are starting with 0 columns at runtime. Just add something like:

for [i] = pred(length(column)) downto 0 do
begin
  column[i].free
end;

before you start making the columns.

share|improve this answer
mmm I tried, but it don't works. On runtime the values of the Column array are reset, so freeing them won't have effect. I used the Loaded Method along with csDesigning check to make sure that the bars are added only in runtime. It works, but It's still far from ideal. Thank you so much anyway..! – Paolo Ingraito Jan 20 '12 at 13:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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