Einzelnen Beitrag anzeigen

Dax
(Gast)

n/a Beiträge
 
#7

Re: Von welcher Klasse ableiten?

  Alt 10. Mär 2005, 22:40
Dann probier mal das aus.. Bei mir funktionierts.

Delphi-Quellcode:
type
  TBase = class(TCollectionItem)
  private
    fString: string;
  published
    property AString: string read fString write fString;
  end;

  TDescendant = class(TBase)
  protected
    property AString;
  end;
  Mit Zitat antworten Zitat