⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pickdate.h

📁 《C Builder 5程序设计——数据库应用实务篇》程序源代码
💻 H
字号:
//---------------------------------------------------------------------------
// Borland C++Builder
// Copyright (c) 1987, 1998 Borland International Inc.  All Rights Reserved.
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
#ifndef pickdateH
#define pickdateH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <Buttons.hpp>
#include <Grids.hpp>
#include "CCALENDR.h"
//---------------------------------------------------------------------------
class TBrDateForm : public TForm
{
__published:	// IDE-managed Components
	TButton *OkBtn;
	TButton *CancelBtn;
	TBevel *Bevel1;
	TLabel *TitleLabel;
	TSpeedButton *PrevMonthBtn;
	TSpeedButton *NextMonthBtn;
   TCCalendar *Calendar1;
	void __fastcall PrevMonthBtnClick(TObject *Sender);
	void __fastcall NextMonthBtnClick(TObject *Sender);
	void __fastcall Calendar1Change(TObject *Sender);
        
        
private:	// User declarations
    void SetDate(TDateTime Date);
    TDateTime GetDate();
public:		// User declarations
    __property TDateTime Date={read=GetDate,write=SetDate};
	virtual __fastcall TBrDateForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TBrDateForm *BrDateForm;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

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