Q&A

  • ComboBox의 Items을 정렬하려고 합니다..
말 그대로 ComboBox의 Items들을 정렬하려고 합니다..

정렬 방법이 있는지 알고 싶습니다.

없으면.. 버블소트나 다른 소트를 사용해야 되나여??

답변 부탁드립니다..

그럼 즐프...
1  COMMENTS
  • Profile
    최석기 2002.03.23 20:43
    procedure TForm1.Button1Click(Sender: TObject);
    var
      strList: TStringList;
    begin
      strList := TStringList.Create;
      strList.Assign(ComboBox1.Items);
      strList.Sort;
      ComboBox1.Items.Assign(strList);
      strList.Free;
    end;