|
void __fastcall TForm1::BoldButtonClick(TObject *Sender)
{
if(BoldButton->Dowm) Memo1->Font->Style = Memo1->Font->Style <<fsBold;
else
Memo1->Font->Style = Memo1->Font->Style >>fsBold;
}
이렇게 했는데요~
버튼을 눌렀을때 행하는것같긴한데
에러 메시지가
'Down' is not a member of 'TSpeedButton'이렇게 나오는데 선언을 해줘야하는건지 아니면~
잘모르겠어서 올립니다^^
|