//建议你用TCheckBox
//---------------------------------------------------------------------------
void __fastcall TForm1::CheckBox1Click(TObject *Sender)
{
  Edit1->Enabled = ((TCheckBox*)Sender)->Checked;
}
//---------------------------------------------------------------------------