Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ChildWin.h
Package: c++builder6编程实例.ZIP [view]
Upload User: lulishicai
Upload Date: 2010-03-01
Package Size: 13202k
Code Size: 1k
Category:
Delphi-C++Builder
Development Platform:
C++ Builder
- //----------------------------------------------------------------------------
- #ifndef ChildWinH
- #define ChildWinH
- //----------------------------------------------------------------------------
- #include <vclControls.hpp>
- #include <vclForms.hpp>
- #include <vclGraphics.hpp>
- #include <vclClasses.hpp>
- #include <vclWindows.hpp>
- #include <vclSystem.hpp>
- #include <StdCtrls.hpp>
- #include <Dialogs.hpp>
- #include <Menus.hpp>
- //----------------------------------------------------------------------------
- class TMDIChild : public TForm
- {
- __published:
- TMemo *Memo1;
- TSaveDialog *SaveDialog1;
- TMainMenu *MainMenu1;
- void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
- void __fastcall Close1Click(TObject *Sender);
- void __fastcall Save1Click(TObject *Sender);
- void __fastcall FormCreate(TObject *Sender);
- private:
- public:
- virtual __fastcall TMDIChild(TComponent *Owner);
- };
- //----------------------------------------------------------------------------
- #endif