//--------------------------------------------------------------------------- #include #pragma hdrstop #include "Edit.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma link "RXSpin" #pragma resource "*.dfm" TEditForm *EditForm; //--------------------------------------------------------------------------- __fastcall TEditForm::TEditForm(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TEditForm::FormShow(TObject *Sender) { Edit->SetFocus(); } //---------------------------------------------------------------------------