1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- //---------------------------------------------------------------------------
- #ifndef FrmOptionFH
- #define FrmOptionFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ExtCtrls.hpp>
- #include <Graphics.hpp>
- //---------------------------------------------------------------------------
- class TFrmOption : public TForm
- {
- __published: // IDE-managed Components
- TButton *btnClose;
- TPanel *pnlLeft;
- TPanel *plServerInfo;
- TImage *Image3;
- TPanel *Panel1;
- TPanel *Panel3;
- TLabel *Label1;
- TPanel *plProcessId;
- TPanel *Panel10;
- TLabel *Label2;
- TPanel *plIpAddress;
- TPanel *Panel24;
- TLabel *Label3;
- TPanel *plVmsPort;
- TPanel *Panel26;
- TLabel *Label4;
- TPanel *plCenterPort;
- TPanel *Panel2;
- TLabel *Label11;
- TPanel *Panel9;
- TLabel *Label9;
- TPanel *plVmsConPort;
- TPanel *Panel13;
- TLabel *Label10;
- TPanel *plSystemId;
- TPanel *Panel5;
- TPanel *Panel19;
- TLabel *Label15;
- TPanel *Panel20;
- TLabel *Label16;
- TPanel *plTot;
- TPanel *Panel22;
- TLabel *Label17;
- TPanel *plNor;
- TPanel *Panel25;
- TLabel *Label18;
- TPanel *plErr;
- TPanel *Panel4;
- TPanel *Panel6;
- TImage *Image1;
- TCheckBox *chkInfo;
- TCheckBox *chkData;
- TCheckBox *chkDetail;
- TCheckBox *chkError;
- TCheckBox *chkWarning;
- TCheckBox *chkDebug;
- TButton *btnSetLog;
- void __fastcall btnCloseClick(TObject *Sender);
- void __fastcall btnSetLogClick(TObject *Sender);
- void __fastcall FormShow(TObject *Sender);
- private: // User declarations
- public: // User declarations
- bool FUpdate;
- __fastcall TFrmOption(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TFrmOption *FrmOption;
- //---------------------------------------------------------------------------
- #endif
|