Q&A

  • Memo에서 라인을 바꾸지 않고 글자를 추가하는 법
흑흑..초보라 질문이 많아서리.

리스트박스의 아이템을 더블 클릭 해서리 메모란에 옮기는데

Memo1.Lines.add(ListBox1.Items[ListBox1.ItemIndex]);

라고 했는데 자꾸 메모란에서 라인을 바꾸면서 써지더라구요

글자를 붙여서 쓰는 방법좀 갈켜주세요...



서울

부산

대전



이렇게말고요



서울,부산,대전 으로 메모란에 쓸수있게 .. 불쌍한초보가 올림.



글구 델파이를 잘할수 있게 뾰족한 방법이 있으면 한수..

책은 모조리 봤는데도 짜구 막혀서리..

1  COMMENTS
  • Profile
    묻지마다쳐 2001.03.15 13:24
    procedure TForm1.ListBox1Click(Sender: TObject);

    var

    strTemp:string;

    begin



    Memo1.WordWrap := True;

    strTemp := Memo1.Text;

    if strTemp <> '' then

    strTemp := strTemp + ', ' + ListBox1.Items[ListBox1.ItemIndex]

    else

    strTemp := strTemp + ListBox1.Items[ListBox1.ItemIndex];



    Memo1.Lines.Text := strTemp;



    end;