Registriert seit: 15. Mär 2005
Ort: Wuppertal
42 Beiträge
|
Re: mein Programm kontroliert auch die leeren Zelle!
17. Mär 2005, 12:14
Ich habe das Problem schon selbst gelöst.
Vielen Dank für die Hilfe
procedure TFormServers.NextServer;
begin
with GridServers do
if Row < Pred(RowCount) then Row := Succ(Row)
else if Col < Pred(ColCount) then
begin
Row := FixedRows;
Col := Succ(Col);
end;
with GridServers do
begin
if (Cells[Col,Row] <> '') then
else
StartWaiting;
end;
end;
|