Einzelnen Beitrag anzeigen

Benutzerbild von Die Muhkuh
Die Muhkuh

Registriert seit: 21. Aug 2003
7.332 Beiträge
 
Delphi 2009 Professional
 
#7

Re: Published propertys werden nicht angezeigt

  Alt 16. Apr 2005, 11:40
Hi,

ich hab das jetzt einfach so gemacht:

Delphi-Quellcode:
private
  FAllUsersProfile: string;
  procedure SetAllUsersProfile(const Value: string);
published
  property AllUsersProfile: string read FAllUsersProfile write SetAllUsersProfile;
end;

[...]

procedure TEnvironment.SetAllUsersProfile(const Value: string);
begin
  FAllUsersProfile := FAllUsersProfile;
end;
Ist vllt. keine sehr saubere Lösung, aber so gehts^^.
  Mit Zitat antworten Zitat