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
Wizard.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 WizardH
- #define WizardH
- //----------------------------------------------------------------------------
- #include <SysUtils.hpp>
- #include <Windows.hpp>
- #include <Messages.hpp>
- #include <Classes.hpp>
- #include <Graphics.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <DBCtrls.hpp>
- #include <DB.hpp>
- #include <Db.hpp>
- #include <DBTables.hpp>
- #include <ExtCtrls.hpp>
- #include <Mask.hpp>
- //----------------------------------------------------------------------------
- class TForm2 : public TForm
- {
- __published:
- TStringField *Table1NAME;
- TSmallintField *Table1SIZE;
- TSmallintField *Table1WEIGHT;
- TStringField *Table1AREA;
- TBlobField *Table1BMP;
- TScrollBox *ScrollBox;
- TLabel *Label1;
- TDBEdit *EditNAME;
- TLabel *Label2;
- TDBEdit *EditSIZE;
- TLabel *Label3;
- TDBEdit *EditWEIGHT;
- TLabel *Label4;
- TDBEdit *EditAREA;
- TLabel *Label5;
- TDBEdit *EditBMP;
- TDBNavigator *DBNavigator;
- TPanel *Panel1;
- TDataSource *DataSource1;
- TPanel *Panel2;
- TTable *Table1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall ScrollBoxClick(TObject *Sender);
- private:
- // private declarations
- public:
- // public declarations
- __fastcall TForm2(TComponent *Owner);
- };
- //----------------------------------------------------------------------------
- extern TForm2 *Form2;
- //----------------------------------------------------------------------------
- #endif