combobox.itemindex=5; //你要的条目。

解决方案 »

  1.   

    指定下拉到第三项:
    ComboBox.ItemIndex:=2;
      

  2.   

    ComboBox.DroppedDown:=True;
    ComboBox.ItemIndex:=2;
      

  3.   

    从0开始:
    ComboBox.ItemIndex:=0;
      

  4.   

    设置ComboBox.ItemIndex
    从0到combobox.items.count-1都可以。
      

  5.   

    procedure TForm1.ComboBox1Change(Sender: TObject);
    begin
            ComboBox1.DroppedDown:=True;
            ComboBox1.ItemIndex:=0;end;
      

  6.   

    worldcup2002(韩国驴) 想要的应该是相当于模糊查询功能吧。
    在combobox的Onkeyup事件:
    procedure TForm1.ComboBox1KeyUp(Sender: TObject; var Key: Word;
      Shift: TShiftState);
    var
      I: Integer;
    begin
      for I := 0 to ComboBox1.Items.Count - 1 do
        if Chr(Key) = UpperCase(ComboBox1.Items[I][1]) then
        begin
          ComboBox1.ItemIndex := I;
          Break;
        end;
    end;
      

  7.   

    你搜索自动完成,和Combobox,你会找到答案的。
      

  8.   

    你搜索自动完成,和Combobox,你会找到答案的。
      

  9.   

    http://expert.csdn.net/expert/topic/611/611382.xml?temp=.4759333
      

  10.   

    太多人了,不好分, codingfans(Jaklly) 的对,分全给你!