Thanks for the replies

I can't figure out the constructor.. It currently looks like this:

[pascal]
constructor TTimeline.Create;
var
x,y,y2,x2: integer;
begin
//inherited;
FGridSize:=16;
FWidth:=200;
FHeight:=200;
SetLength(SequencerMap,FHeight+1,FWidth+1);
y2 := Divide(FHeight, FGridSize);
x2 := Divide(FWidth, FGridSize);
for y:=0 to y2 do
for x:=0 to x2 do
SequencerMap[y,x]:=-1;
end;
[/pascal]

It won't execute at all. I guess it's possibly due to the inherited I've commented out, but I've tried using it in every possible variant without luck. (Oh, and I'm not using a bitmap anymore, so thats why there arn't any bitmap stuff in the creator )