Hi! ich bins nochmal...steh mal wieder auf dem schlauch.
Delphi-Quellcode:
procedure TExtpansionPanel.FillArray(ClrArr: array of TColor;
StrLst: TStrings);
var ni : Integer;
begin
SetLength(ClrArr,StrLst.Count);
For ni := 0 to StrLst.Count -1 do
ClrArr[ni] := StringToColor(StrLst[ni]);
end;
Hab diese Prozedur erstellt, weil ich mehrere Arrays mit Farben füllen muss...
Aber jetzt sagt er mir bei SetLength : inkompatible Typen...Versteh ich nicht. Ich hab doch im ProzedurKopf ClrArr als Array of TColor deklariert und StrLst.Count ist doch ein Integer...
Wäre toll, wenn mir wer helfen könnte (Bin so kurz vor dem Ziel...
)
Man liest sich, Stanlay