home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / LC / SEE4C10.ZIP / QM_PGM.H < prev    next >
C/C++ Source or Header  |  1998-05-14  |  1KB  |  44 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef qm_pgmH
  3. #define qm_pgmH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include <vcl\Menus.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published:    // IDE-managed Components
  14.         TMainMenu *MainMenu;
  15.         TMenuItem *mConnect;
  16.         TMenuItem *mSend;
  17.         TMenuItem *mClose;
  18.         TLabel *Label1;
  19.         TLabel *Label2;
  20.         TLabel *Label3;
  21.         TLabel *Label4;
  22.         TLabel *Label5;
  23.         
  24.         TEdit *eServer;
  25.         TEdit *eTo;
  26.         TEdit *eFrom;
  27.         TEdit *eSubject;
  28.         TMenuItem *mExit;
  29.         TMemo *eMessage;
  30.         TEdit *eResult;
  31.         TLabel *lResult;
  32.         void __fastcall mExitClick(TObject *Sender);
  33.         void __fastcall mConnectClick(TObject *Sender);
  34.         void __fastcall mSendClick(TObject *Sender);
  35.         void __fastcall mCloseClick(TObject *Sender);
  36. private:    // User declarations
  37. public:        // User declarations
  38.         __fastcall TForm1(TComponent* Owner);
  39. };
  40. //---------------------------------------------------------------------------
  41. extern TForm1 *Form1;
  42. //---------------------------------------------------------------------------
  43. #endif
  44.