Revision 2, 1.0 kB
(checked in by yumileroy, 17 years ago)
|
[svn] * Proper SVN structure
Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00
|
Rev | Line | |
---|
[2] | 1 | //--------------------------------------------------------------------------- |
---|
| 2 | |
---|
| 3 | #ifndef SearchFrmH |
---|
| 4 | #define SearchFrmH |
---|
| 5 | //--------------------------------------------------------------------------- |
---|
| 6 | #include <Classes.hpp> |
---|
| 7 | #include <Controls.hpp> |
---|
| 8 | #include <StdCtrls.hpp> |
---|
| 9 | #include <Forms.hpp> |
---|
| 10 | #include <ExtCtrls.hpp> |
---|
| 11 | //--------------------------------------------------------------------------- |
---|
| 12 | class TFrmSearch : public TForm |
---|
| 13 | { |
---|
| 14 | __published: // IDE-managed Components |
---|
| 15 | TRadioGroup *rgSI; |
---|
| 16 | TEdit *edSeach; |
---|
| 17 | TLabel *lbseach; |
---|
| 18 | TButton *btOk; |
---|
| 19 | TButton *btCancel; |
---|
| 20 | void __fastcall btOkClick(TObject *Sender); |
---|
| 21 | void __fastcall btCancelClick(TObject *Sender); |
---|
| 22 | private: // User declarations |
---|
| 23 | public: // User declarations |
---|
| 24 | __fastcall TFrmSearch(TComponent* Owner); |
---|
| 25 | }; |
---|
| 26 | //--------------------------------------------------------------------------- |
---|
| 27 | extern PACKAGE TFrmSearch *FrmSearch; |
---|
| 28 | //--------------------------------------------------------------------------- |
---|
| 29 | #endif |
---|