《Delphi 3.0编程参考手册》求取 ⇩

第1部分 概述1

第1章 综述1

Delphi简介1

Delphi的新特性2

所有版本的共同特性2

32位优化编译器2

Character类型3

Currency类型3

String类型3

Variant类型3

数据模块(Data Module)5

Windows 95/NT与COM支持5

增强型IDE和调试器5

对象仓库与可视化窗体的继承5

可视化组件库6

32-位Borland数据库引擎6

将16位的程序转换为32位6

Windows 95通用控件6

Visual Basic定制控件(VBX)7

全新的类型大小7

Windows的差异7

本书内容7

第1部分:概述7

第2部分:对象8

第3部分:永久性对象8

第4部分:组件8

第5部分:非窗口控件8

第6部分:窗口控件8

每章的内容组织8

主题讨论8

总结表9

参考项9

查找你所需的内容9

查看完整的主题9

进一步浏览Delphi9

第2章 VCL基础知识10

利用对象编程10

纯粹与混合型语言10

OOP概念10

继承11

多态性11

封装性12

单元和类12

类可见性13

Private14

Protected14

Public14

Published14

可视组件库14

处理事件15

使用属性16

方法16

方法指令16

virtual和dynamic16

override16

abstract17

运行时的类型信息17

使用对象浏览器18

自己探索VCL19

第2部分 对象20

第3章 TObject20

第4章 TIniFile24

第5章 TThread34

第6章 TRegistry和TRegIniFile40

注册表的差别40

第7章 TList和TPopupList53

TList54

TPopupList55

第8章 Exception及其派生类63

编写安全程序63

try…except63

try…finally64

Exception类型64

EAbort65

EOutOfMemory65

EOutOfResources66

EInOutError66

EIntError66

EDivByZero66

ERangeError66

EIntOverflow66

EMathError66

EInvalidOp66

EZeroDivide66

EOverflow66

EUnderflow66

EInvalidPointer66

EInvalidCast66

EConvertError66

EAccessViolation67

EPrivilege67

EStackOverflow67

EControlC67

EVariantError67

EPropReadOnly67

EPropWriteOnly67

EExternalException67

EStreamError67

EFCreateError68

EFOpenError68

EResNotFound68

EListError68

EBitsError68

EStringListError68

EThread68

EPrinter68

EPrinter68

EMenuError68

EInvalidOperation68

EInvalidGraphic68

EInvalidGraphicOperation68

Exception属性和方法68

第9章 Internet控件入门72

FTP72

HTML72

HTTP73

NNTP73

POP73

SMTP73

TCP73

UDP73

第3部分 持久性对象第10章 TPersistent74

第11章 TClipboard75

Delphi及其剪贴板75

第12章 TColumnTitle83

第13章 TControlScrollBar88

第14章 TIconOptions92

第15章 TIistItem和TListItems94

TListItem94

TListItems102

第16章 TParaAttributes108

第17章 TPicture112

第18章 TTextAttributes117

第19章 TTreeNode和TTreeNodes121

TTreeNodes136

第20章 TCanvas及其派生类146

TMetaFileCanvas147

TPrinterCanvas148

第21章 TCollection,TCollectionItem及其派生类168

TCollection168

TCollectionItem169

TListColumns169

TListColumn169

THeaderSections170

THeaderSection170

TStatusPanels171

TStatusPanel171

TDBGridColumns171

TColumn172

项目示例192

第22章 TDataLink及其派生类196

TDataLink196

TTableDataLink200

TFieldDataLink200

TQueryDataLink204

TNavDataLink204

TDataSourceLink204

TListSourceLink204

TGridDataLink204

TDBCtrlGridLink207

第23章 TGraphicsObject及其派生类208

TGraphicsObject208

TBrush208

TPen209

TFont209

第24章 TGraphic及其派生类217

TGraphic217

TIcon218

TMetafile218

TBitmap219

第25章 TStrings及其派生类228

TStrings228

TComboBoxStrings230

THeaderStrings230

TIndexFiles231

TListBoxStrings231

TMemoStrings231

TOutlineStrings232

TPageAccess232

TRichEditStrings232

TStringGridStrings233

TStringList233

TSubItems234

TTabPageAccess234

TTabStrings234

TTreeStrings235

项目示例255

第4部分 组件259

第26章 TComponent259

组件的使用259

第27章 TApplication264

第28章 TDataSource291

第29章 TMenuItem295

第30章 TScreen307

第31章 TSession314

第32章 TTimer324

第33章 TMenu及其派生类327

设计菜单327

TMenu类327

TMainMenu类328

TPopupMenu328

第34章 TCommonDialog及其派生类334

TCommonDialog334

TColorDialog335

TFindDialog336

TFontDialog337

TOpenDialog337

Filter编辑器337

TPrintDialog339

TPrinterSetupDialog340

TReplaceDialog340

TSaveDialog341

第35章 TCustomImageList及其派生类357

TCustomImageList357

TImageList359

TGlyphList359

项目示例388

第36章 TDataSet及其派生类391

TDataSet391

TDBDataSet453

TTable453

TStoredProc454

TQuery455

第37章 TField及其派生类456

TField456

启动Fields编辑器457

创建永久字段组件458

删除永久字段组件458

重排永久字段组件的次序459

改变单个字段的次序459

改变一块字段的次序459

定义新的永久字段组件459

创建新的永久字段组件459

对话框选项459

Field Type单选组框459

Field Properties组框459

Type组合框460

TAutoIncField462

TBCDField462

TBinaryField462

TBlobField462

TBooleanField463

TBytesField463

TCurrencyField463

TDateField463

TDateTimeField463

TFloatField464

TGraphicField464

TIntegerField464

TMemoField464

TNumericField465

TSmallIntField465

TStringField465

TTimeField465

TVarBytesField465

TWordField465

第38章 TControl502

第5部分 非窗口控件第39章 TGraphicControl527

TGraphicControl527

第40章 TBevel531

第41章 TImage535

第42章 TPaintBox540

第43章 TShape543

第44章 TCustomLabel及其派生类548

TDBText550

TLabel551

第45章 TSpeedButton及其派生类554

在Delphi中创建工具栏554

第46章 TSplitter562

第6部分 窗口控件第47章 TWinControl566

窗口控件566

第48章 TDBCtrlGrid581

第49章 THeaderControl592

第50章 TProgessBar599

第51章 TScrollBar605

第52章 TStatusBar612

第53章 TTabSheet618

第54章 TTrackBar623

第55章 TCustomComboBox及其派生类631

TCustomComboBox631

TComboBox634

TDBComboBox636

第56章 TCustomHotKey及其派生类644

TCustomHotKey644

THotKey647

第57章 TCustomListBox及其派生类650

TCustomListBox650

TDBListBox654

TListBox655

第58章 TCustomListView与TListView665

TCustomListView665

TListView669

第59章 TCustomTabControl及其派生类694

TCustomTabControl695

TPageControl698

TTabControl699

第60章 TCustomTreeView和TTreeView707

TCustomTreeView707

TTreeView710

第61章 TCustomUpDown和TUpDown725

TCustomUpDown725

TUpDowN728

第62章 TScrollingWinControl及其派生类732

TScrollingWinControl732

TForm735

MDI编程736

第63章 TButtonControl及其派生类758

TButtonControl758

TButton758

TBitBtn761

TCustomCheckBox762

TCheckBox765

TRadioButton766

第64章 TCustomEdit及其派生类780

TCustomEdit780

TEdit783

TCustomMaskEdit785

TMaskEdit785

TCustomMemo786

TMemo786

TCustomRichEdit788

TRichEdit788

第65章 TCustomControl及其派生类805

TCustomControl805

TMediaPlayer808

TCustomPanel826

TPanel826

TDBNavigator829

TCustomGroupBox832

TGroupBox833

TCustomRadioGroup834

TRadioGroup834

附录A 推荐书目837

附录B CD-ROM的使用838

1998《Delphi 3.0编程参考手册》由于是年代较久的资料都绝版了,几乎不可能购买到实物。如果大家为了学习确实需要,可向博主求助其电子版PDF文件(由(美)(P.蒂罗特)P.Thurrott等著;卢庆龄等译 1998 北京:清华大学出版社 出版的版本) 。对合法合规的求助,我会当即受理并将下载地址发送给你。

高度相关资料

Borland C++3.0&Turbo C++3.0 for windows用户参考手册(1992 PDF版)
Borland C++3.0&Turbo C++3.0 for windows用户参考手册
1992 北京:北京航空航天大学出版社
库程序参考手册(1988年12月第1版 PDF版)
库程序参考手册
1988年12月第1版 国防工业出版社
IBM BASIC 语言编程手册  3.0版( PDF版)
IBM BASIC 语言编程手册 3.0版
上海电子计算机厂
DOS程序参考手册( PDF版)
DOS程序参考手册
北京:清华大学出版社
程序员参考手册  3(1991 PDF版)
程序员参考手册 3
1991 中国科学院希望高级电脑技术公司
TURBO PASCAL参考手册 第3.0版( PDF版)
TURBO PASCAL参考手册 第3.0版
程序员参考手册  下(1991 PDF版)
程序员参考手册 下
1991 北京:海洋出版社
Visual FoxPro 3.0实用参考手册(1996 PDF版)
Visual FoxPro 3.0实用参考手册
1996 北京:科学出版社
跟我学Delphi 3.0(1998 PDF版)
跟我学Delphi 3.0
1998 合肥:中国科学技术大学出版社
XENIX C编译程序参考手册(1987 PDF版)
XENIX C编译程序参考手册
1987 北京科海总公司培训中心;中国科学院软件研究所
中文Visual FoxPro 5.0编程参考手册(1998 PDF版)
中文Visual FoxPro 5.0编程参考手册
1998 北京:北京航空航天大学出版社
Delphi 3.0入门与提高(1998 PDF版)
Delphi 3.0入门与提高
1998 北京:北京航空航天大学出版社
Delphi 3.0面向对象程序设计(1998 PDF版)
Delphi 3.0面向对象程序设计
1998 北京:国防工业出版社
Delphi实用编程(1998 PDF版)
Delphi实用编程
1998 西安:西北工业大学出版社
Visual Basic 3.0 for Windows编程实用手册(1997 PDF版)
Visual Basic 3.0 for Windows编程实用手册
1997 北京:人民邮电出版社