Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.33 KB | None | 0 0
  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef Unit1H
  4. #define Unit1H
  5. //---------------------------------------------------------------------------
  6. #include <System.Classes.hpp>
  7. #include <Vcl.Controls.hpp>
  8. #include <Vcl.StdCtrls.hpp>
  9. #include <Vcl.Forms.hpp>
  10. #include <Vcl.ExtCtrls.hpp>
  11. #include <Data.Bind.Components.hpp>
  12. #include <Data.Bind.EngExt.hpp>
  13. #include <System.Bindings.Outputs.hpp>
  14. #include <System.Rtti.hpp>
  15. #include <Vcl.Bind.DBEngExt.hpp>
  16. #include <Vcl.Bind.Editors.hpp>
  17. //---------------------------------------------------------------------------
  18. class TForm1 : public TForm
  19. {
  20. __published:    // IDE-managed Components
  21.     TPanel *Panel1;
  22.     TPanel *Panel2;
  23.     TListBox *ListBox1;
  24.     TRadioGroup *RadioGroup1;
  25.     TListBox *ListBox2;
  26.     TEdit *Edit1;
  27.     TEdit *Edit2;
  28.     TButton *Button1;
  29.     TImage *Image1;
  30.     void __fastcall Button1Click(TObject *Sender);
  31.     void __fastcall Image1Click(TObject *Sender);
  32.     void __fastcall ListBox1Click(TObject *Sender);
  33.     void __fastcall FormResize(TObject *Sender);
  34. private:    // User declarations
  35. public:     // User declarations
  36.     __fastcall TForm1(TComponent* Owner);
  37. };
  38. //---------------------------------------------------------------------------
  39. extern PACKAGE TForm1 *Form1;
  40. //---------------------------------------------------------------------------
  41. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement