home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
-
- #include "SDIMain.h"
- #include "About.h"
- //---------------------------------------------------------------------
- #pragma resource "*.dfm"
- TSDIAppForm *SDIAppForm;
- //---------------------------------------------------------------------
- __fastcall TSDIAppForm::TSDIAppForm(TComponent *AOwner)
- : TForm(AOwner)
- {
- }
- //---------------------------------------------------------------------
-
- void __fastcall TSDIAppForm::FileNew1Execute(TObject *Sender)
- {
- // Do nothing
- }
- //---------------------------------------------------------------------------
-
- void __fastcall TSDIAppForm::FileOpen1Execute(TObject *Sender)
- {
- OpenDialog->Execute();
- }
- //---------------------------------------------------------------------------
-
- void __fastcall TSDIAppForm::FileSave1Execute(TObject *Sender)
- {
- SaveDialog->Execute();
- }
- //---------------------------------------------------------------------------
-
-
- void __fastcall TSDIAppForm::FileExit1Execute(TObject *Sender)
- {
- Close();
- }
- //---------------------------------------------------------------------------
-
- void __fastcall TSDIAppForm::HelpAbout1Execute(TObject *Sender)
- {
- AboutBox->ShowModal();
- }
- //---------------------------------------------------------------------------
-
-