Moin,
das kannst du über das Ereignis OnTopLeftChanged erreichen.
Im ersten Grids sieht die Methode folgendermaßen aus...
Delphi-Quellcode:
procedure TForm.StringGrid1TopLeftChanged(Sender: TObject);
begin
StringGrid2.LeftCol:=StringGrid1.LeftCol;
StringGrid3.LeftCol:=StringGrid1.LeftCol;
StringGrid4.LeftCol:=StringGrid1.LeftCol;
StringGrid2.TopRow:=StringGrid1.TopRow;
StringGrid3.TopRow:=StringGrid1.TopRow;
StringGrid4.TopRow:=StringGrid1.TopRow;
end;
und so weiter...
MfG
Thorsten