dlltst1.h
来自「文件名称:新曦 我的资源 搜索软件 源程序(Borland Delphi 7)说」· C头文件 代码 · 共 37 行
H
37 行
//---------------------------------------------------------------------------
#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 + =
减小字号Ctrl + -
显示快捷键?