home *** CD-ROM | disk | FTP | other *** search
/ .net 1999 December / netCD65.iso / pc / Software / Construc / V4.0 / _SETUP.1 / Prompt.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-01-16  |  1.4 KB  |  48 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef PromptH
  3. #define PromptH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\ExtCtrls.hpp>
  10. #include <vcl\ComCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TMainForm : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.     TLabel *Label1;
  16.     TListBox *Type;
  17.     TLabel *Label2;
  18.     TLabel *Label3;
  19.     TLabel *Label4;
  20.     TMemo *Message;
  21.     TLabel *Label5;
  22.     TButton *Preview;
  23.     TBevel *Bevel1;
  24.     TLabel *Label6;
  25.     TLabel *Label7;
  26.     TListBox *OnCancel;
  27.     TLabel *Label8;
  28.     TLabel *Label9;
  29.     TListBox *Code;
  30.     TBevel *Bevel2;
  31.     TButton *Insert;
  32.     TButton *Cancel;
  33.     TRichEdit *RichEdit;
  34.     void __fastcall PreviewClick(TObject *Sender);
  35.     void __fastcall InsertClick(TObject *Sender);
  36.     void __fastcall TypeClick(TObject *Sender);
  37.     void __fastcall MessageChange(TObject *Sender);
  38.     
  39. private:    // User declarations
  40. public:        // User declarations
  41.     __fastcall TMainForm(TComponent* Owner);
  42.     AnsiString CodeString;
  43. };
  44. //---------------------------------------------------------------------------
  45. extern TMainForm *MainForm;
  46. //---------------------------------------------------------------------------
  47. #endif
  48.