Q&A

  • 버튼으로 콤보박스 조절하기
도사님들!! 도와 주세요.



버튼으로 콤보박스의 아이템을 조절하려고 합니다.

아래처럼 했더니 콤보박스라는 녀석이 끄떡도 안하고 버티는군요.



procedure TForm1.SpeedButton3Click(Sender: TObject);

var

i:integer;

j:integer;

begin



if ComboBox3.Visible=true or ComboBox4.Visible=true then

i:=ComboBox3.ItemIndex;

j:=i-1;



뭐가 문제지요? 갤쳐 주시면 백골이 난망이겠습니다.

1  COMMENTS
  • Profile
    안치봉 1999.08.27 02:53
    쩝.. 끄떡도 안하는 코드네요..

    만약 ItemIndex를 바꾸고 싶으시면..

    마지막 줄에 이런것이 있어야 하겠죠?

    ComboBox3.ItemIndex := j;





    한 재 께서 말씀하시기를...

    > 도사님들!! 도와 주세요.

    >

    > 버튼으로 콤보박스의 아이템을 조절하려고 합니다.

    > 아래처럼 했더니 콤보박스라는 녀석이 끄떡도 안하고 버티는군요.

    >

    > procedure TForm1.SpeedButton3Click(Sender: TObject);

    > var

    > i:integer;

    > j:integer;

    > begin

    >

    > if ComboBox3.Visible=true or ComboBox4.Visible=true then

    > i:=ComboBox3.ItemIndex;

    > j:=i-1;

    >

    > 뭐가 문제지요? 갤쳐 주시면 백골이 난망이겠습니다.