Q&A

  • combobox 에 추가한 내용중 중복이 있으면 skip 하고 자 합니다.
combobox 에 a,b,c,d,e,f 를 넣습니다. 이때 또 다시 a가 나오면 건너 뛰려고 합니다.
어케 해야 할지요... 조언 부탁드립니다.
2  COMMENTS
  • Profile
    천희택 2005.11.10 04:47

    <!--CodeS-->
    if ComboBox.Items.IndexOf('a') < 0 then
        ComboBox.Items.add('a');
    <!--CodeE-->

    이렇게 입력하거나 건너뛸려면

    <!--CodeS-->
    if ComboBox.Items.IndexOf('a') >= 0 then
    begin
        건너뛰자
    end;
    <!--CodeE-->

  • Profile
    조혜진 2005.11.11 01:13