C++ BUILDER精彩编程实例集锦(源码)3 第五部分 系统编程 第六部分 数据库应用

源代码在线查看: mainform.h

软件大小: 15835 K
上传用户: zhoulovely
关键词: BUILDER 编程实例 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				//---------------------------------------------------------------------------
				//filename:mainform.h
				#ifndef MainformH
				#define MainformH
				//---------------------------------------------------------------------------
				#include 
				#include 
				#include 
				#include 
				#include 
				#include 
				#include 
				//---------------------------------------------------------------------------
				class TForm1 : public TForm
				{
				__published:	// IDE-managed Components
				        TBitBtn *BitBtn1;
				        TBitBtn *BitBtn2;
				        TImage *Image1;
				        void __fastcall BitBtn1Click(TObject *Sender);
				        void __fastcall BitBtn2Click(TObject *Sender);
				private:	// User declarations
				public:		// User declarations
				        __fastcall TForm1(TComponent* Owner);
				        bool bShutoff;
				        //截获 WM_QUERYENDSESSION 消息。
				        BEGIN_MESSAGE_MAP
				        MESSAGE_HANDLER(WM_QUERYENDSESSION,TMessage,OnWMQueryEndSession)
				        END_MESSAGE_MAP(TForm);
				void __fastcall TForm1::OnWMQueryEndSession(TMessage &Message);
				
				};
				//---------------------------------------------------------------------------
				extern PACKAGE TForm1 *Form1;
				//---------------------------------------------------------------------------
				#endif
							

相关资源