📄 dlltst1.h
字号:
//---------------------------------------------------------------------------
#ifndef DllTst1H
#define DllTst1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TDllTestForm : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TMemo *DisplayMemo;
TButton *CallDllButton;
TLabel *Label1;
TEdit *HostnameEdit;
TLabel *Label2;
TEdit *PortEdit;
void __fastcall FormShow(TObject *Sender);
void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
void __fastcall CallDllButtonClick(TObject *Sender);
void __fastcall FormDestroy(TObject *Sender);
private: // User declarations
AnsiString FIniFileName;
BOOL FInitialized;
void __fastcall Display(AnsiString Msg);
public: // User declarations
__fastcall TDllTestForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TDllTestForm *DllTestForm;
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -