home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef PromptH
- #define PromptH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\ExtCtrls.hpp>
- #include <vcl\ComCtrls.hpp>
- //---------------------------------------------------------------------------
- class TMainForm : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label1;
- TListBox *Type;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TMemo *Message;
- TLabel *Label5;
- TButton *Preview;
- TBevel *Bevel1;
- TLabel *Label6;
- TLabel *Label7;
- TListBox *OnCancel;
- TLabel *Label8;
- TLabel *Label9;
- TListBox *Code;
- TBevel *Bevel2;
- TButton *Insert;
- TButton *Cancel;
- TRichEdit *RichEdit;
- void __fastcall PreviewClick(TObject *Sender);
- void __fastcall InsertClick(TObject *Sender);
- void __fastcall TypeClick(TObject *Sender);
- void __fastcall MessageChange(TObject *Sender);
-
- private: // User declarations
- public: // User declarations
- __fastcall TMainForm(TComponent* Owner);
- AnsiString CodeString;
- };
- //---------------------------------------------------------------------------
- extern TMainForm *MainForm;
- //---------------------------------------------------------------------------
- #endif
-