Q&A

  • StringGrid 의 값을 ComboBox 로 옮기기..
스트링 그리드의 값을 한번에 콤보박스로 옮길려고 아래처럼 작성했지만 잘 안되네요..

좀 알려주세요.

var

k:Integer ;

begin

for k:=0 to StringGrid1.RowCount - 1 do

begin

combobox.Items.Add(StringGrid1.Cells(1,k).string);

next;

end;

end;





이렇게 하니까 에러가 나네요..

좀 도와주세요.

1  COMMENTS
  • Profile
    장은석 2000.04.09 10:04
    최은정 wrote:

    > 스트링 그리드의 값을 한번에 콤보박스로 옮길려고 아래처럼 작성했지만 잘 안되네요..

    > 좀 알려주세요.

    > var

    > k:Integer ;

    > begin

    > for k:=0 to StringGrid1.RowCount - 1 do

    > begin

    > combobox.Items.Add(StringGrid1.Cells(1,k).string);

    > next;

    > end;

    > end;

    >

    >

    > 이렇게 하니까 에러가 나네요..

    > 좀 도와주세요.



    ------------------------------------------------------------------------------



    combobox.Items.Add(StringGrid1.Cells(1,k).string); 을 아래처럼 바꿔 주세요..



    combobox1.Items.Add(StringGrid1.Cells[1,k]); // 왜냐하면 String그리드 잖아요.. ^^



    그럼...