//--------------------------------------------------------------------------- #include #pragma hdrstop #include "AutoSave.h" #include "Exception.h" #include "Common.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TAutoSaveForm *AutoSaveForm; //--------------------------------------------------------------------------- __fastcall TAutoSaveForm::TAutoSaveForm(TComponent* Owner) : TForm(Owner) { } //--------------------------------------------------------------------------- void __fastcall TAutoSaveForm::CreateParams(TCreateParams &Params) { TForm::CreateParams(Params); Params.Style &= ~WS_CAPTION; } //--------------------------------------------------------------------------- void __fastcall TAutoSaveForm::FormCreate(TObject *Sender) { SetSmallFont(Label1->Font); Label1->Caption = IDS_MESSAGE_AUTOSAVE; } //---------------------------------------------------------------------------