Advertisement
Guest User

Untitled

a guest
Mar 13th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef Unit1H
  4. #define Unit1H
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include <Menus.hpp>
  11. #include <ExtCtrls.hpp>
  12. #include <Dialogs.hpp>
  13. //---------------------------------------------------------------------------
  14. class TForm1 : public TForm
  15. {
  16. __published: // IDE-managed Components
  17. TMainMenu *MainMenu1;
  18. TMenuItem *w1;
  19. TMenuItem *proszowa1;
  20. TMenuItem *sniegowa1;
  21. TMenuItem *gazowa1;
  22. TMenuItem *pianowa1;
  23. TMenuItem *proszkowa1;
  24. TMenuItem *usungasnice1;
  25. TMenuItem *N2;
  26. TMenuItem *zapisz2;
  27. TListBox *ListBox1;
  28. TOpenDialog *OpenDialog1;
  29. void __fastcall proszkowa1Click(TObject *Sender);
  30. void __fastcall pianowa1Click(TObject *Sender);
  31. void __fastcall sniegowa1Click(TObject *Sender);
  32. void __fastcall gazowa1Click(TObject *Sender);
  33. void __fastcall usungasnice1Click(TObject *Sender);
  34. void __fastcall FormCreate(TObject *Sender);
  35. private: // User declarations
  36. public: // User declarations
  37. __fastcall TForm1(TComponent* Owner);
  38. };
  39. //---------------------------------------------------------------------------
  40. extern PACKAGE TForm1 *Form1;
  41. //---------------------------------------------------------------------------
  42. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement