Q&A

  • Case문에서... 질문이여...!_!


Case [수식] of

[조건1] : [문장1]

[조건2] : [문장2]

end;



이렇잖아여... 근데... 전...

case DBComboBox1.ItemIndex of

0: Edit1.ReadOnly := true;

Edit1.Color := clSilver;

1: Edit1.ReadOnly := false

Edit1.Color := clWindow;



이런걸 하구 싶거든여... 그런데... 에러가 나더라구여...

조건 하나당... 한 문장만 수행하는건 되던데...

두 문자을 다 수행해야 하는데... 어떻게 하면 좋죠? !_!

좋은 방법 가르쳐 주세엽... !_!







1  COMMENTS
  • Profile
    조복기 1999.11.24 03:39
    김매경 wrote:

    >

    > Case [수식] of

    > [조건1] : [문장1]

    > [조건2] : [문장2]

    > end;

    >

    > 이렇잖아여... 근데... 전...

    > case DBComboBox1.ItemIndex of

    > 0: Edit1.ReadOnly := true;

    > Edit1.Color := clSilver;

    > 1: Edit1.ReadOnly := false

    > Edit1.Color := clWindow;

    >

    > 이런걸 하구 싶거든여... 그런데... 에러가 나더라구여...

    > 조건 하나당... 한 문장만 수행하는건 되던데...

    > 두 문자을 다 수행해야 하는데... 어떻게 하면 좋죠? !_!

    > 좋은 방법 가르쳐 주세엽... !_!

    >

    >

    >



    case DBComboBox1.ItemIndex of

    0: begin

    Edit1.ReadOnly := true;

    Edit1.Color := clSilver;

    end;

    1: begin

    Edit1.ReadOnly := false

    Edit1.Color := clWindow;

    end;

    end;



    좋은하루되세요~