Курсовая работа: Программа игры Кости
Memo1->Lines->Add ("Ñîîòíîøåíèå ïîáåä è ïîðàæåíèé: "+IntToStr (v) +" ê "+IntToStr (l));
Button2->Enabled=true;
Button3->Enabled=true;
// Button4->Enabled=true;
}
// ---------------------------------------------------------------------------
void __fastcall TForm2:: FormClose (TObject *Sender, TCloseAction &Action)
{
Form1->Close ();
}
// ---------------------------------------------------------------------------
void __fastcall TForm2:: Button1Click (TObject *Sender)
{
if ( (Edit2->Text! ="") && (Edit3->Text! ="")) {
ns=StrToInt (Edit1->Text);
st=StrToInt (Edit2->Text);
x=StrToInt (Edit3->Text);
if ( (x<2) || (x>12) || (st>ns)) {ShowMessage ("Ïðîâåðüòå ïðàâèëüíîñòü ââîäà"); }
else
Button2->Enabled=true;
}
else
{ShowMessage ("Îäíî èç ïîëåé íå çàïîëíåíî!"); }
}
// ---------------------------------------------------------------------------
void __fastcall TForm2:: Edit2Change (TObject *Sender)
{
Button2->Enabled=false;
}