c14_5f.h

来自「C++Builder编程实例详解,用具体的例子阐明C++的一些基本操作,所有程序」· C头文件 代码 · 共 51 行

H
51
字号
//----------------------------------------------------------------------------
//Borland C++Builder
//Copyright (c) 1987, 1997 Borland International Inc. All Rights Reserved.
//----------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef C14_5fH
#define C14_5fH
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\ISP.hpp>
#include <vcl\OleCtrls.hpp>
#include <vcl\Menus.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\ComCtrls.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:    // IDE-managed Components 
    TPanel *Panel1;
    THTML *HTML1;
    TLabel *Label1;
    TComboBox *URLs;
    TMainMenu *MainMenu1;
    TMenuItem *File1;
    TMenuItem *Exit1;
    TMenuItem *View1;
    TMenuItem *DocumentSource1;
    TSpeedButton *GoButton;
    TSpeedButton *CancelBtn;
    TBevel *Bevel1;
    TStatusBar *Statusbar1;
    void __fastcall HTML1EndRetrieval(TObject *Sender);
    void __fastcall HTML1BeginRetrieval(TObject *Sender);
    void __fastcall Exit1Click(TObject *Sender);
    void __fastcall DocumentSource1Click(TObject *Sender);
    void __fastcall CancelBtnClick(TObject *Sender);
    void __fastcall GoButtonClick(TObject *Sender);
        void __fastcall URLsKeyPress(TObject *Sender, Char &Key);
private:        // User declarations
public:         // User declarations
    virtual __fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TForm1 *Form1;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?