我想用两个string类型的数据进行循环,例如:edit1.text中的数据位2010-09-08,edit2.text中的数据位2010-09-12,
简要代码如下:
var count:string;
......
count:=edit1.text;
while (count<=edit2.Text) do
  begin
  count:=count+'''+1+''';
  end;
怎么实现count的递增?