Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.59 KB | None | 0 0
  1. // Unit1.h
  2. #ifndef Unit1H
  3. #define Unit1H
  4. // ---------------------------------------------------------------------------
  5. #include <System.Classes.hpp>
  6. #include <Vcl.Controls.hpp>
  7. #include <Vcl.StdCtrls.hpp>
  8. #include <Vcl.Forms.hpp>
  9. #include <Vcl.ExtCtrls.hpp>
  10.  
  11. // ---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14.     __published: // IDE-managed Components
  15.     TListBox* ListBox1;
  16.     TEdit* Edit1;
  17.     TButton* Button1;
  18.     TButton* Button2;
  19.     TButton* Button3;
  20.     TButton* Button4;
  21.     TButton* Button5;
  22.     TButton* Button6;
  23.     TPanel* Panel1;
  24.     TEdit* Edit2;
  25.     TPanel* Panel2;
  26.     TButton* Button7;
  27.     TButton* Button8;
  28.     TListBox *ListBox2;
  29.     TButton *Button9;
  30.     TButton *Button11;
  31.     TButton *Button12;
  32.  
  33.     void __fastcall Button1Click(TObject* Sender);
  34.     void __fastcall Button2Click(TObject* Sender);
  35.     void __fastcall Button3Click(TObject* Sender);
  36.     void __fastcall Button4Click(TObject* Sender);
  37.     void __fastcall Button5Click(TObject* Sender);
  38.     void __fastcall Button6Click(TObject* Sender);
  39.     void __fastcall Button7Click(TObject* Sender);
  40.     void __fastcall Button8Click(TObject* Sender);
  41.     void __fastcall Button9Click(TObject *Sender);
  42.     void __fastcall Button11Click(TObject *Sender);
  43.     void __fastcall Button12Click(TObject *Sender);
  44.  
  45.     private: // User declarations
  46.     public: // User declarations
  47.  
  48.     void Redraw();
  49.  
  50.     __fastcall TForm1(TComponent* Owner);
  51. };
  52.  
  53. // ---------------------------------------------------------------------------
  54. extern PACKAGE TForm1* Form1;
  55. // ---------------------------------------------------------------------------
  56. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement