Einzelnen Beitrag anzeigen

mytar

Registriert seit: 30. Mai 2004
Ort: Zermatt
411 Beiträge
 
Delphi 6 Enterprise
 
#11

Re: Arry of Boolean = funkzt nicht

  Alt 13. Aug 2004, 16:49
Hier!

Delphi-Quellcode:
type TPathItem = class
  private
    FPathChecked: TBoolArray;
    procedure SetPathChecked(const Value: TBoolArray);
  public
    property PathChecked: TBoolArray read FPathChecked write SetPathChecked;
  end;


procedure TPathItem.SetPathChecked(const Value: TBoolArray);
begin
// SetLength(FPathChecked, Length(Value)); //<<<<
  FPathChecked := Value;
end;
greetz
mytar
Francis Obikwelu
  Mit Zitat antworten Zitat