subclassed control not showing

Hi I just installed FMX-Pack and I'm Impressed.

But - I'm used to add functionality even to those controls.

Everything seemed to work - but the Control does NOT display itself. All additional attributes are there, and are editable in Object Inspector. Only the handles for resizing and move are displayed, when the (empty) area is clicked.

As this is not working I try to subclass only the basic. (below). same effect.
Who can help? Something with Style lookup?

unit psMemoU;

interface

uses
  System.SysUtils, System.Classes, FMX.Types, FMX.Controls, FMX.TMSBaseControl,
  FMX.TMSMemo;

type
  TpsMemo = class(TTMSFMXMemo)
  private
    { Private-Deklarationen }
  protected
    { Protected-Deklarationen }
  public
    { Public-Deklarationen }
  published
    { Published-Deklarationen }
  end;

procedure Register;

implementation

procedure Register;
begin
  RegisterComponents('FMX', [TpsMemo]);
end;

end.

Hi,



Please take a look at the following tip:

http://www.tmssoftware.com/site/tmsfmxpack.asp?s=faq&show=652

It works - Thanx a lot!