str4 ;= '' ;
  if  ADOQuery1.Active = false then
      ADOQuery1.Active := true ;
  if  ADOQuery1.Active  then
    begin
    ADOQuery1.First ;
    while not ADOQuery1.Eof do
       begin
       memo1.Text :=  memo1.Text +
                                str4  +
                                    ADOQuery1.Fields[0].asstring  +
                                         #13;
       ADOQuery1.Next ;
       end ;
    end ;
这是我的一个关于查找文本文档的一段代码
我没有办法让它分行
拜托大家帮帮忙啊