注冊 | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當前位置: 首頁出版圖書科學(xué)技術(shù)計算機/網(wǎng)絡(luò)數(shù)據(jù)庫其他數(shù)據(jù)庫ACCESS 2000中文版高級編程

ACCESS 2000中文版高級編程

ACCESS 2000中文版高級編程

定 價:¥127.00

作 者: (美)[F.S.巴克]F.Scott Barker著;瀟湘工作室譯
出版社: 人民郵電出版社
叢編項: 計算機技術(shù)譯林精選系列
標 簽: Access

購買這本書可以去


ISBN: 9787115083746 出版時間: 2000-01-01 包裝:
開本: 26cm 頁數(shù): 1113頁 字數(shù):  

內(nèi)容簡介

  本書全面系統(tǒng)地介紹了有關(guān)Access 2000中文版高級編程的知識,其主要內(nèi)容有:ActiveX數(shù)據(jù)對象的方方面面、使用控件擴充窗體的功能、使用數(shù)據(jù)訪問頁向Web發(fā)布、在Access中使用其他Office應(yīng)用程序、使用API調(diào)用擴充Access的功能、創(chuàng)建自動的向?qū)Ш图虞d項、利用Office Developer Edition工具處理多用戶的情況、利用同步復(fù)制的所有功能以及實現(xiàn)SQL Server作為后端來擴充Access 數(shù)據(jù)庫的功能等等。本書代碼豐富、說明清晰詳盡,適用于在Access中進行開發(fā)工作的高級程序員。

作者簡介

暫缺《ACCESS 2000中文版高級編程》作者簡介

圖書目錄

第一部分 編程基礎(chǔ) </font><br></font><br>第1章 宏與代碼 </font><br></font><br>1.1 何時使用代碼代替宏 </font><br>1.1.1 何時用宏 </font><br>1.1.2 何時用代碼 </font><br>1.2 宏到代碼的轉(zhuǎn)換 </font><br>1.2.1 使用DoCmd對象 </font><br>1.2.2 與宏命令等價的代碼 </font><br>1.3 將現(xiàn)有宏轉(zhuǎn)換為代碼 </font><br>1.4 小 結(jié) </font><br></font><br>第2章 使用VBA編寫代碼 </font><br></font><br>2.1 編程初步 </font><br>2.1.1 使用代碼模塊 </font><br>2.1.2 聲明變量 </font><br>2.1.3 聲明過程 </font><br>2.1.4 控制程序流 </font><br>2.1.5 代碼注釋 </font><br>2.1.6 錯誤處理 </font><br>2.1.7 本書的編程風(fēng)格 </font><br>2.2 VBA初步 </font><br>2.2.1 對象基礎(chǔ) </font><br>2.2.2 使用對象瀏覽器 </font><br>2.3 使用對象編程 </font><br>2.3.1 關(guān)鍵字Public </font><br>2.3.2 關(guān)鍵字Private </font><br>2.4 使用屬性和方法 </font><br>2.4.1 使用現(xiàn)有的屬性 </font><br>2.4.2 使用現(xiàn)有的方法 </font><br>2.4.3 使用命名參數(shù) </font><br>2.4.4 將對象賦值給變量 </font><br>2.5 使用集合 </font><br>2.5.1 計算元素的數(shù)量 </font><br>2.5.2 訪問集合元素 </font><br>2.5.3 對集合元素循環(huán) </font><br>2.6 定制窗體 </font><br>2.6.1 編寫定制的屬性 </font><br>2.6.2 編寫值為對象的屬性 </font><br>2.6.3 編寫定制的方法 </font><br>2.7 編寫類模塊 </font><br>2.7.1 創(chuàng)建外界支持的對象 </font><br>2.7.2 創(chuàng)建類模塊 </font><br>2.7.3 使用類模塊 </font><br>2.8 小 結(jié) </font><br></font><br>第3章 做出選擇:MDB或ADP,DAO或ADO </font><br></font><br>3.1 使用MDB還是ADP </font><br>3.1.1 兩者各自用到的對象 </font><br>3.2 使用DAO還是ADO </font><br>3.3 小 結(jié) </font><br></font><br>第4章 使用Access集合 </font><br></font><br>4.1 創(chuàng)建定制的集合 </font><br>4.1.1 定義新集合 </font><br>4.1.2 添加集合元素 </font><br>4.1.3 刪除集合元素 </font><br>4.2 比較定制的集合和數(shù)組 </font><br>4.2.1 創(chuàng)建整數(shù)集合 </font><br>4.2.2 創(chuàng)建整數(shù)數(shù)組 </font><br>4.2.3 集合的高級用法 </font><br>4.3 訪問Access對象模型 </font><br>4.3.1 使用Application對象 </font><br>4.3.2 使用References集合 </font><br>4.3.3 使用Forms和Reports集合 </font><br>4.4 通過編程實現(xiàn)同一窗體的多個副本 </font><br>4.4.1 支持多窗體實例 </font><br>4.4.2 檢查Employees窗體的代碼 </font><br>4.4.3 自動關(guān)閉Employees窗體 </font><br>4.5 小 結(jié) </font><br></font><br>第5章 使用DAO </font><br></font><br>5.1 理解DAO </font><br>5.1.1 了解數(shù)據(jù)庫的內(nèi)部構(gòu)造 </font><br>5.1.2 DAO初步 </font><br>5.1.3 進入數(shù)據(jù)庫 </font><br>5.1.4 檢查數(shù)據(jù)庫 </font><br>5.1.5 檢查表的屬性 </font><br>5.1.6 檢查查詢類型 </font><br>5.2 使用DAO創(chuàng)建數(shù)據(jù)庫 </font><br>5.2.1 創(chuàng)建Database對象 </font><br>5.2.2 復(fù)制表結(jié)構(gòu) </font><br>5.2.3 使用Field對象 </font><br>5.2.4 復(fù)制查詢 </font><br>5.2.5 復(fù)制關(guān)系 </font><br>5.2.6 復(fù)制數(shù)據(jù) </font><br>5.3 使用事務(wù)加快處理速度 </font><br>5.4 使用定制的屬性 </font><br>5.5 小 結(jié) </font><br></font><br>第6章 ActiveX數(shù)據(jù)庫對象 </font><br></font><br>6.1 查看對象模型 </font><br>6.1.1 ADODB .1對象模型 </font><br>6.1.2 ADOX .1 for DDL and Security對象模型 </font><br>6.1.3 JRO .1對象模型 </font><br>6.2 引用類型庫 </font><br>6.3 打開數(shù)據(jù)庫的連接 </font><br>6.3.1 與當前數(shù)據(jù)庫連接 </font><br>6.3.2 與另一個數(shù)據(jù)庫連接 </font><br>6.4 使用ADO創(chuàng)建記錄集 </font><br>6.4.1 打開簡單的記錄集 </font><br>6.4.2 循環(huán)搜索和編輯記錄集 </font><br>6.4.3 創(chuàng)建永久記錄集 </font><br>6.4.4 使用RecordCount, BOF和EOF屬性 </font><br>6.4.5 檢查記錄集支持的操作 </font><br>6.4.6 復(fù)制記錄集 </font><br>6.4.7 書簽 </font><br>6.5 使用ADO查詢 </font><br>6.5.1 創(chuàng)建新查詢 </font><br>6.5.2 創(chuàng)建參數(shù)查詢 </font><br>6.5.3 針對參數(shù)查詢打開記錄集 </font><br>6.5.4 執(zhí)行批量查詢 </font><br>6.5.5 修改現(xiàn)有的查詢 </font><br>6.5.6 刪除查詢 </font><br>6.6 用ADO操作表 </font><br>6.6.1 查看Tables集合 </font><br>6.6.2 使用字段和索引創(chuàng)建新表 </font><br>6.6.3 通過加入索引來修改現(xiàn)有表 </font><br>6.7 小 結(jié) </font><br></font><br>第7章 使用VBA處理Access中的錯誤 </font><br></font><br>7.1 Access中的錯誤消息 </font><br>7.2 使用錯誤處理程序的不同方法 </font><br>7.3 Access運行階段時的錯誤處理 </font><br>7.3.1 使用On Error命令 </font><br>7.3.2 使用Exit Sub|Function命令 </font><br>7.3.3 使用Resume, Resume Next和Resume LineLabel </font><br>7.4 使用ERR和 ERROR對象 </font><br>7.4.1 Err對象的Clear方法 </font><br>7.4.2 Err對象的Raise方法 </font><br>7.5 使用Errors集合 </font><br>7.6 創(chuàng)建用戶定義的錯誤 </font><br>7.7 使用定制的錯誤日志追蹤錯誤 </font><br>7.7.1 錯誤日志例程的聲明節(jié) </font><br>7.7.2 調(diào)用錯誤日志的錯誤處理程序的示例 </font><br>7.7.3 每個錯誤的跟蹤信息 </font><br>7.7.4 檢查實際的錯誤日志代碼 </font><br>7.7.5 首先記錄到后端,必要時記錄到前端 </font><br>7.7.6 使用錯誤處理程序更新后端 </font><br>7.8 創(chuàng)建集中式錯誤處理例程 </font><br>7.9 錯誤處理問題的最后回顧 </font><br>7.9.1 注意環(huán)境開關(guān) </font><br>7.9.2 使用錯誤處理程序回卷事務(wù) </font><br>7.9.3 使用窗體的On Error事件 </font><br>7.9.4 嵌套錯誤處理程序 </font><br>7.9.5 錯誤處理的新選項 </font><br>7.10 小 結(jié) </font><br></font><br>第二部分 操作和顯示數(shù)據(jù) </font><br></font><br>第8章 用查詢最大限度地利用數(shù)據(jù) </font><br></font><br>8.1 Access使用查詢的位置 </font><br>8.1.1 在窗體或報表的記錄源屬性中使用查詢 </font><br>8.1.2 設(shè)置用戶使用查詢的權(quán)限 </font><br>8.1.3 使用命名約定和查詢文檔 </font><br>8.2 運用選擇查詢:使用查詢設(shè)計網(wǎng)格 </font><br>8.2.1 表的聯(lián)接 </font><br>8.2.2 同一個表使用兩次(自聯(lián)接) </font><br>8.2.3 使用Access的自動查閱功能 </font><br>8.3 運用操作查詢:力量的源泉 </font><br>8.3.1 生成表查詢(SELECT INTO) </font><br>8.3.2 追加查詢 </font><br>8.3.3 更新查詢(UPDATE..SET) </font><br>8.3.4 刪除查詢(DELETE) </font><br>8.4 使用高級的查詢操作 </font><br>8.4.1 總計查詢 </font><br>8.4.2 在單獨或所有選項中使用聯(lián)合查詢 </font><br>8.4.3 嵌套查詢 </font><br>8.4.4 子查詢 </font><br>8.4.5 產(chǎn)生關(guān)于對象的查詢(DDL) </font><br>8.5 用VBA增強功能 </font><br>8.5.1 用VBA創(chuàng)建更快的查詢 </font><br>8.5.2 窗體查詢 </font><br>8.5.3 生成臨時的查詢對象QueryDef </font><br>8.5.4 使用DoCmd對象的RunSQL方法 </font><br>8.5.5 在VBA中實現(xiàn)參數(shù)查詢 </font><br>8.6 用查詢產(chǎn)生報表與窗體 </font><br>8.7 用查詢解決問題 </font><br>8.7.1 分組以獲得百分比 </font><br>8.7.2 查找并刪除重復(fù)的記錄 </font><br>8.7.3 用組的嵌套徹底解決問題 </font><br>8.7.4 區(qū)分新舊記錄 </font><br>8.7.5 在交叉表查詢中使用“總計”行 </font><br>8.8 查詢過程的結(jié)構(gòu) </font><br>8.8.1 定義查詢 </font><br>8.8.2 編譯 </font><br>8.8.3 準備執(zhí)行計劃(優(yōu)化) </font><br>8.9 Jet的優(yōu)化方法 </font><br>8.9.1 應(yīng)用Rushmore技術(shù) </font><br>8.9.2 檢查群聚的基本索引 </font><br>8.9.3 使用預(yù)讀功能 </font><br>8.9.4 用SetOption命令在注冊表中設(shè)置Jet </font><br>8.10 優(yōu)化技術(shù) </font><br>8.10.1 用表關(guān)系提高性能 </font><br>8.10.2 添加索引 </font><br>8.10.3 改變數(shù)據(jù)庫結(jié)構(gòu)以提高性能 </font><br>8.10.4 優(yōu)化聯(lián)接性能 </font><br>8.11 使用非常規(guī)的優(yōu)化技術(shù) </font><br>8.11.1 性能調(diào)整的陷阱 </font><br>8.11.2 診斷慢速查詢 </font><br>8.11.3 用查詢設(shè)計網(wǎng)格以解決模糊字段的引用問題 </font><br>8.12 使用分析器向?qū)?nbsp;</font><br>8.12.1 表分析器向?qū)?nbsp;</font><br>8.12.2 性能分析器向?qū)?nbsp;</font><br>8.12.3 文檔管理器 </font><br>8.13 小 結(jié) </font><br></font><br>第9章 創(chuàng)建功能強大的窗體 </font><br></font><br>9.1 增強窗體性能 </font><br>9.1.1 增強窗體性能 </font><br>9.2 使用Access 最新的窗體特性 </font><br>9.2.1 使用窗體的記錄集屬性 </font><br>9.2.2 使用Dirty事件 </font><br>9.3 利用其他窗體特性 </font><br>9.3.1 指定啟動的Splash Screen窗體 </font><br>9.3.2 使用窗體的背景屬性 </font><br>9.4 利用Openargs和tab屬性重用窗體執(zhí)行標準任務(wù) </font><br>9.5 增強選項卡窗體的性能 </font><br>9.6 小 結(jié) </font><br></font><br>第10章 用控件擴展窗體的功能 </font><br></font><br>10.1 為窗體中的字段設(shè)置查閱屬性 </font><br>10.2 充分利用組合框 </font><br>10.2.1 使用組合框向?qū)?nbsp;</font><br>10.2.2 在向?qū)鈱M合框編程 </font><br>10.2.3 使用聯(lián)合查詢以顯示一個或所有記錄 </font><br>10.2.4 在子窗體中使用SQL的UNION語句查詢所有記錄 </font><br>10.2.5 在組合框控件外顯示組合框的列 </font><br>10.2.6 根據(jù)用戶的輸入添加新的組合框選項 </font><br>10.3 使用本機的Access選項卡控件 </font><br>10.3.1 本機的選項卡控件概述 </font><br>10.3.2 創(chuàng)建并編輯新的選項卡控件 </font><br>10.3.3 在選項卡控件中移動頁 </font><br>10.3.4 在選項卡頁上添加控件 </font><br>10.3.5 為選項卡控件編程 </font><br>10.4 更改Access控件 </font><br>10.4.1 在窗體設(shè)計的時候,更改Access控件 </font><br>10.4.2 在運行的時候,使用VBA更改控件 </font><br>10.5 對多重選擇列表框編程 </font><br>10.5.1 與多重選擇有關(guān)的列表框?qū)傩?nbsp;</font><br>10.5.2 在多重選擇列表框中使用VBA來操作選中項 </font><br>10.6 使用子窗體、子報表向?qū)?nbsp;</font><br>10.7 對控件提供電子表格的光標移動方式 </font><br>10.7.1 研究問題 </font><br>10.7.2 解決問題 </font><br>10.8 用代碼操縱控件 </font><br>10.8.1 檢查選項組菜單窗體的組成 </font><br>10.8.2 ManipulatingControlsExample窗體 </font><br>10.8.3 查看窗體后面的代碼 </font><br>10.9 小 結(jié) </font><br></font><br>第11章 創(chuàng)建強大的報表 </font><br></font><br>11.1 對匯總、細節(jié)以及綜合這二者的報表建立同一報表 </font><br>11.2 用按窗體查詢來創(chuàng)建同一報表的動態(tài)分組 </font><br>11.3 復(fù)雜的特征:創(chuàng)建迂回報表 </font><br>11.3.1 查看前面的報表 </font><br>11.3.2 "列”頁面的屬性 </font><br>11.3.3 報表之后的工作 </font><br>11.4 用動態(tài)列創(chuàng)建交叉表查詢的報表 </font><br>11.4.1 報表使用的按窗體查詢 </font><br>11.4.2 報表使用的交叉表查詢 </font><br>11.4.3 DynamicColumnsExample報表 </font><br>11.5 使用多項選擇列表框選擇多項打印主題 </font><br>11.5.1 MultiSelectCategoryExample報表 </font><br>11.5.2 多項選擇列表框窗體 </font><br>11.5.3 多項選擇列表框窗體的程序清單 </font><br>11.6 為選擇分組依據(jù)項創(chuàng)建類似向?qū)У慕缑?nbsp;</font><br>11.6.1 核心表:WizExReports和WizExElements </font><br>11.6.2 使用WizExReports窗體 </font><br>11.6.3 為新報表使用組元素向?qū)?nbsp;</font><br>11.7 動態(tài)格式化報表 </font><br>11.7.1 DynamicFormattingExample報表 </font><br>11.7.2 報表的條件格式化 </font><br>11.8 小 結(jié) </font><br></font><br>第12章 處理數(shù)據(jù)訪問頁 </font><br></font><br>12.1 為什么使用數(shù)據(jù)訪問頁 </font><br>12.1.1 理解數(shù)據(jù)訪問頁的結(jié)構(gòu)化方式 </font><br>12.1.2 瀏覽控件 </font><br>12.1.3 數(shù)據(jù)訪問頁與窗體和報表的比較 </font><br>12.1.4 哪類用戶需要數(shù)據(jù)訪問頁 </font><br>12.2 省時的數(shù)據(jù)訪問頁向?qū)?nbsp;</font><br>12.2.1 使用“自動創(chuàng)建數(shù)據(jù)頁:縱欄式” </font><br>12.2.2 使用數(shù)據(jù)頁向?qū)?nbsp;</font><br>12.3 創(chuàng)建及完善簡單的數(shù)據(jù)訪問頁 </font><br>12.3.1 數(shù)據(jù)訪問頁的字段列表 </font><br>12.3.2 添加超級鏈接 </font><br>12.3.3 在數(shù)據(jù)訪問頁中使用表達式 </font><br>12.3.4 使用綁定的組合框和列表框 </font><br>12.3.5 使用主題格式化 </font><br>12.3.6 數(shù)據(jù)訪問頁所使用的其他控件 </font><br>12.4 分組的數(shù)據(jù)訪問頁:Web報表 </font><br>12.4.1 創(chuàng)建基本頁 </font><br>12.4.2 在數(shù)據(jù)訪問頁中創(chuàng)建關(guān)系 </font><br>12.4.3 升級分組級別 </font><br>12.4.4 添加頁眉節(jié) </font><br>12.4.5 在分區(qū)帶顯示的數(shù)據(jù)訪問頁中查看數(shù)據(jù)層次 </font><br>12.4.6 使用組篩選控件的組合框 </font><br>12.5 查找其他資源 </font><br>12.6 小 結(jié) </font><br></font><br>第三部分 利用互操作性來擴展Access </font><br></font><br>第13章 用自動化功能和DDE驅(qū)動Office應(yīng)用程序 </font><br></font><br>13.1 理解自動化功能 </font><br>13.2 檢查Office產(chǎn)品的對象模型 </font><br>13.3 應(yīng)用自動化功能 </font><br>13.3.1 在VBA中聲明對象變量 </font><br>13.3.2 使用CreateObject()函數(shù) </font><br>13.3.3 使用GetObject()函數(shù) </font><br>13.4 應(yīng)用自動化功能從Access運行其他應(yīng)用程序 </font><br>13.4.1 在Access中調(diào)用Word </font><br>13.4.2 在Access中調(diào)用Excel </font><br>13.4.3 在Access中調(diào)用Microsoft Graph </font><br>13.4.4 在Access中調(diào)用Microsoft Project </font><br>13.5 使用自動化功能在Microsoft Project中驅(qū)動Access </font><br>13.6 應(yīng)用自動化功能在Access中調(diào)用Outlook </font><br>13.6.1 創(chuàng)建Outlook郵件項目 </font><br>13.6.2 在Access中創(chuàng)建Outlook任務(wù)項 </font><br>13.6.3 從Access中向Outlook中輸入聯(lián)系人 </font><br>13.6.4 從Access中刪除Outlook中的聯(lián)系人 </font><br>13.6.5 從Access中創(chuàng)建Outlook日歷條目 </font><br>13.7 用DDE調(diào)用其他應(yīng)用程序 </font><br>13.7.1 理解Access中用到的DDE命令 </font><br>13.7.2 用DDE執(zhí)行復(fù)雜的Word示例 </font><br>13.8 小 結(jié) </font><br></font><br>第14章 編程實現(xiàn)ActiveX控件功能 </font><br></font><br>14.1 理解ActiveX Windows通用控件 </font><br>14.1.1 使用TabStrip控件 </font><br>14.1.2 使用Access選項卡和使用ActiveX TabStrip控件的區(qū)別 </font><br>14.2 ImageList控件詳述 </font><br>14.2.1 在設(shè)計階段添加圖像 </font><br>14.2.2 在運行階段向ImageList控件中添加圖像 </font><br>14.3 用ListView控件仿效Windows 的資源管理器 </font><br>14.3.1 查看ListView控件的不同視圖 </font><br>14.3.2 查看ListView控件的主要屬性組 </font><br>14.3.3 人工設(shè)置ListView控件 </font><br>14.3.4 使用VBA創(chuàng)建和填充ListView控件 </font><br>14.4 應(yīng)用ProgressBar控件顯示任務(wù)的進程 </font><br>14.4.1 使用SysCmd()顯示Access進度條 </font><br>14.4.2 使用ActiveX ProgressBar控件 </font><br>14.5 使用Slider控件在運行階段設(shè)置文本框尺寸 </font><br>14.6 應(yīng)用Microsoft Rich TextBox控件提供所見即所得的功能 </font><br>14.6.1 Rich Textbox控件的屬性 </font><br>14.6.2 Microsoft Rich Textbox控件的代碼 </font><br>14.7 用StatusBar控件創(chuàng)建單獨窗體的狀態(tài)欄 </font><br>14.7.1 StatusBar Panels集合的屬性 </font><br>14.7.2 在運行階段設(shè)置StatusBar屬性 </font><br>14.8 用ToolBar控件豐富窗體上的工具欄 </font><br>14.9 應(yīng)用TreeView控件查看數(shù)據(jù)文件管理器的樣式 </font><br>14.10 小 結(jié) </font><br></font><br>第15章 使用API調(diào)用來擴展Access功能 </font><br></font><br>15.1 理解動態(tài)鏈接庫 </font><br>15.1.1 執(zhí)行鏈接 </font><br>15.1.2 內(nèi)存管理 </font><br>15.1.3 常用的DLL </font><br>15.2 檢查API調(diào)用的語法 </font><br>15.3 查找API的聲明 </font><br>15.4 查看可能的API調(diào)用 </font><br>15.4.1 使用API Viewer定位調(diào)用 </font><br>15.4.2 剪切和粘貼API Viewer中的調(diào)用 </font><br>15.4.3 在Win32api.txt文件中查找API調(diào)用 </font><br>15.5 使用API調(diào)用的注意事項 </font><br>15.5.1 從頭開始創(chuàng)建自己的API聲明 </font><br>15.5.2 將16位API調(diào)用轉(zhuǎn)換為32位API調(diào)用 </font><br>15.6 API調(diào)用的例子 </font><br>15.6.1 查找可執(zhí)行應(yīng)用程序的文件 </font><br>15.6.2 查看所使用的窗體 </font><br>15.6.3 在Access中連接和斷開網(wǎng)絡(luò)驅(qū)動器 </font><br>15.6.4 顯示當前用戶和計算機名 </font><br>15.7 在應(yīng)用程序中顯示相關(guān)的文件夾 </font><br>15.8 使用Open File對話框的API調(diào)用 </font><br>15.9 小 結(jié) </font><br></font><br>第16章 使用類模塊和集合來擴展VBA的庫功能 </font><br></font><br>16.1 第一個方案 </font><br>16.1.1 Bookmark Tracker的特性 </font><br>16.1.2 Bookmark Tracker的基本對象 </font><br>16.1.3 開始使用類模塊 </font><br>16.1.4 用Bookmark Tracker來包裝 </font><br>16.2 管理同一窗體的多個實例 </font><br>16.2.1 查看特征集 </font><br>16.2.2 打開相同窗體的副本所使用的窗體 </font><br>16.2.3 檢查隔離相同窗體的多個副本所使用的代碼 </font><br>16.3 小 結(jié) </font><br></font><br>第17章 創(chuàng)建向?qū)Ш图虞d項 </font><br></font><br>17.1 理解Access向?qū)А⑸善骱图虞d項 </font><br>17.2 查看向?qū)Ш图虞d項的注冊表條目 </font><br>17.3 創(chuàng)建自己的加載項 </font><br>17.3.1 使用Bookmark Tracker Wizard </font><br>17.3.2 在Access 中安裝加載項 </font><br>17.3.3 對Bookmark Tracker Wizard編程 </font><br>17.3.4 結(jié)束向?qū)?nbsp;</font><br>17.4 使用Access 2000代碼庫&nbsp;&nbsp;</font><br>17.4.1 代碼庫的優(yōu)缺點&nbsp;&nbsp;</font><br>17.4.2 考慮庫數(shù)據(jù)庫的位置&nbsp;&nbsp;</font><br>17.4.3 設(shè)置庫的引用&nbsp;&nbsp;</font><br>17.4.4 在“對象瀏覽器”中查看庫例程&nbsp;&nbsp;</font><br>17.4.5 庫編碼問題&nbsp;&nbsp;</font><br>17.5 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第18章 使用VBA操作注冊表&nbsp;&nbsp;</font><br></font><br>18.1 Windows注冊表的歷史&nbsp;&nbsp;</font><br>18.1.1 在應(yīng)用程序中使用Windows注冊表&nbsp;&nbsp;</font><br>18.1.2 組成注冊表的部分&nbsp;&nbsp;</font><br>18.1.3 操作注冊表的工具&nbsp;&nbsp;</font><br>18.2 使用VBA中的注冊表命令&nbsp;&nbsp;</font><br>18.3 用注冊表的API調(diào)用來執(zhí)行任務(wù)&nbsp;&nbsp;</font><br>18.3.1 處理多個后端數(shù)據(jù)庫&nbsp;&nbsp;</font><br>18.3.2 樣本應(yīng)用程序&nbsp;&nbsp;</font><br>18.3.3 使用實際代碼&nbsp;&nbsp;</font><br>18.4 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第19章 Access 2000的Internet應(yīng)用&nbsp;&nbsp;</font><br></font><br>19.1 Access 2000的超級鏈接特征&nbsp;&nbsp;</font><br>19.1.1 操作未綁定的超級鏈接控件&nbsp;&nbsp;</font><br>19.1.2 維護數(shù)據(jù)庫的超級鏈接基礎(chǔ)&nbsp;&nbsp;</font><br>19.1.3 查看超級鏈接數(shù)據(jù)類型&nbsp;&nbsp;</font><br>19.1.4 使用IsHyperlink屬性向界面添加超級鏈接&nbsp;&nbsp;</font><br>19.1.5 通過編程用Follow、FollowHyperlink以及HyperlinkPart方法使用超級鏈接</font><br>19.2 Access 2000超級鏈接選項&nbsp;&nbsp;</font><br>19.3 向HTML文檔導(dǎo)入和導(dǎo)出Access 2000對象的簡便方法&nbsp;&nbsp;</font><br>19.3.1 使用“導(dǎo)出”來導(dǎo)出到HTML&nbsp;&nbsp;</font><br>19.3.2 導(dǎo)入和鏈接HTML文件&nbsp;&nbsp;</font><br>19.4 發(fā)布為其他Web文件格式&nbsp;&nbsp;</font><br>19.5 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第四部分 添加專業(yè)外觀和分布應(yīng)用程序&nbsp;&nbsp;</font><br></font><br>第20章 編程Office命令欄和Office助手&nbsp;&nbsp;</font><br></font><br>20.1 使用命令欄&nbsp;&nbsp;</font><br>20.1.1 "自定義”對話框的“工具欄”頁&nbsp;&nbsp;</font><br>20.1.2 "自定義”對話框的“命令”頁&nbsp;&nbsp;</font><br>20.1.3 "自定義”對話框的“選項”選項卡&nbsp;&nbsp;</font><br>20.1.4 通過用戶界面創(chuàng)建工具欄&nbsp;&nbsp;</font><br>20.1.4 添加命令欄到窗體&nbsp;&nbsp;</font><br>20.2 通過VBA使用命令欄&nbsp;&nbsp;</font><br>20.2.1 檢查命令欄對象模型&nbsp;&nbsp;</font><br>20.2.2 編程修改命令欄&nbsp;&nbsp;</font><br>20.3 使用Office助手&nbsp;&nbsp;</font><br>20.3.1 Office助手對象模型&nbsp;&nbsp;</font><br>20.3.2 使用Office助手作為窗體的幫助&nbsp;&nbsp;</font><br>20.4 FileSearch對象&nbsp;&nbsp;</font><br>20.4.1 使用簡單的例子&nbsp;&nbsp;</font><br>20.4.2 使用FileSearch屬性&nbsp;&nbsp;</font><br>20.4.3 使用PropertyTests集合&nbsp;&nbsp;</font><br>20.4.4 使用Property對象的復(fù)雜例子&nbsp;&nbsp;</font><br>20.5 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第21章 應(yīng)用程序安全性&nbsp;&nbsp;</font><br></font><br>21.1 保護應(yīng)用程序安全的目的&nbsp;&nbsp;</font><br>21.1.1 保護敏感數(shù)據(jù)&nbsp;&nbsp;</font><br>21.1.2 保護開發(fā)人員的代碼&nbsp;&nbsp;</font><br>21.2 Access 2000 00的安全性&nbsp;&nbsp;</font><br>21.2.1 system.mdw的模型和函數(shù)&nbsp;&nbsp;</font><br>21.2.2 共享級安全:數(shù)據(jù)庫密碼&nbsp;&nbsp;</font><br>21.2.3 用戶級安全:Access 2000真正的安全系統(tǒng)&nbsp;&nbsp;</font><br>21.2.4 用戶和組&nbsp;&nbsp;</font><br>21.2.5 權(quán)限&nbsp;&nbsp;</font><br>21.2.6 我有權(quán)限嗎&nbsp;&nbsp;</font><br>21.2.7 理解所有者&nbsp;&nbsp;</font><br>21.2.8 為添加的保護加密數(shù)據(jù)庫&nbsp;&nbsp;</font><br>21.2.9 System.mdw文件&nbsp;&nbsp;</font><br>21.3 安全性用戶界面&nbsp;&nbsp;</font><br>21.3.1 使用PID、SID、WID和密碼&nbsp;&nbsp;</font><br>21.3.2 創(chuàng)建新用戶&nbsp;&nbsp;</font><br>21.3.3 創(chuàng)建新工作組&nbsp;&nbsp;</font><br>21.3.4 刪除用戶和組&nbsp;&nbsp;</font><br>21.3.5 向組中添加用戶&nbsp;&nbsp;</font><br>21.3.6 為用戶帳號添加密碼&nbsp;&nbsp;</font><br>21.3.7 從用戶帳號中刪除密碼&nbsp;&nbsp;</font><br>21.3.8 設(shè)置對象權(quán)限&nbsp;&nbsp;</font><br>21.3.9 保護VBE中的模塊&nbsp;&nbsp;</font><br>21.3.10 設(shè)置數(shù)據(jù)庫權(quán)限&nbsp;&nbsp;</font><br>21.3.11 改變對象的所有者&nbsp;&nbsp;</font><br>21.3.12 加密數(shù)據(jù)庫&nbsp;&nbsp;</font><br>21.3.13 創(chuàng)建工作組信息文件&nbsp;&nbsp;</font><br>21.3.14 手工保護數(shù)據(jù)庫&nbsp;&nbsp;</font><br>21.3.15 設(shè)置哪些權(quán)限&nbsp;&nbsp;</font><br>21.3.16 取消數(shù)據(jù)庫安全保護&nbsp;&nbsp;</font><br>21.4 Access 2000安全性的便利工具&nbsp;&nbsp;</font><br>21.4.1 使用安全性向?qū)?amp;nbsp;&nbsp;</font><br>21.4.2 在Access 2000中打印用戶和組&nbsp;&nbsp;</font><br>21.4.3 讀取安全性白皮書&nbsp;&nbsp;</font><br>21.4.4 使用其他安全性資源&nbsp;&nbsp;</font><br>21.5 避免Access 2000安全性的常見陷阱&nbsp;&nbsp;</font><br>21.5.1 設(shè)計安全&nbsp;&nbsp;</font><br>21.5.2 用默認帳號創(chuàng)建對象&nbsp;&nbsp;</font><br>21.5.3 多用戶環(huán)境中保護鏈接表&nbsp;&nbsp;</font><br>21.5.4 用所有者權(quán)限運行&nbsp;&nbsp;</font><br>21.5.5 同步復(fù)制環(huán)境的安全性&nbsp;&nbsp;</font><br>21.5.6 用Microsoft Office Developer發(fā)布安全的應(yīng)用程序&nbsp;&nbsp;</font><br>21.5.7 創(chuàng)建.mde文件發(fā)布安全的應(yīng)用程序&nbsp;&nbsp;</font><br>21.6 用代碼管理安全性&nbsp;&nbsp;</font><br>21.6.1 使用DAO進行安全性編程&nbsp;&nbsp;</font><br>21.6.2 通過代碼創(chuàng)建新用戶&nbsp;&nbsp;</font><br>21.6.3 通過代碼刪除用戶&nbsp;&nbsp;</font><br>21.6.4 通過代碼設(shè)置數(shù)據(jù)庫密碼&nbsp;&nbsp;</font><br>21.6.5 通過代碼創(chuàng)建組&nbsp;&nbsp;</font><br>21.6.6 通過代碼刪除組&nbsp;&nbsp;</font><br>21.6.7 通過代碼添加用戶到組&nbsp;&nbsp;</font><br>21.6.8 通過代碼創(chuàng)建對象的所有者&nbsp;&nbsp;</font><br>21.6.9 通過代碼為對象設(shè)置權(quán)限&nbsp;&nbsp;</font><br>21.6.10 通過代碼檢查權(quán)限&nbsp;&nbsp;</font><br>21.6.11 通過代碼確定登錄身份&nbsp;&nbsp;</font><br>21.6.12 拒絕用戶創(chuàng)建數(shù)據(jù)庫的能力&nbsp;&nbsp;</font><br>21.6.13 拒絕表和查詢對象的創(chuàng)建&nbsp;&nbsp;</font><br>21.6.14 通過代碼壓縮、加密和解密數(shù)據(jù)庫&nbsp;&nbsp;</font><br>21.6.15 通過代碼禁用特殊鍵&nbsp;&nbsp;</font><br>21.7 使用安全的樣本數(shù)據(jù)庫:Chap21s.mdb&nbsp;&nbsp;</font><br>21.8 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第五部分 管理數(shù)據(jù)庫&nbsp;&nbsp;</font><br></font><br>第22章 處理多用戶環(huán)境&nbsp;&nbsp;</font><br></font><br>22.1 多用戶術(shù)語&nbsp;&nbsp;</font><br>22.2 Access 2000多用戶處理&nbsp;&nbsp;</font><br>22.2.1 默認記錄鎖定&nbsp;&nbsp;</font><br>22.2.2 默認打開模式:共享與獨占&nbsp;&nbsp;</font><br>22.2.3 更新重試的次數(shù)&nbsp;&nbsp;</font><br>22.2.4 ODBC刷新間隔&nbsp;&nbsp;</font><br>22.2.5 刷新間隔&nbsp;&nbsp;</font><br>22.2.6 更新重試時間間隔&nbsp;&nbsp;</font><br>22.3 一兩個數(shù)據(jù)庫包容器:知道放置的位置&nbsp;&nbsp;</font><br>22.3.1 各組件去向概述&nbsp;&nbsp;</font><br>22.3.2 拆分數(shù)據(jù)庫的優(yōu)缺點&nbsp;&nbsp;</font><br>22.3.3 手工拆分數(shù)據(jù)庫&nbsp;&nbsp;</font><br>22.3.4 使用數(shù)據(jù)庫拆分器向?qū)?amp;nbsp;&nbsp;</font><br>22.4 內(nèi)建鎖定模式&nbsp;&nbsp;</font><br>22.4.1 使用記錄與頁級鎖定&nbsp;&nbsp;</font><br>22.4.2 鎖定所有記錄&nbsp;&nbsp;</font><br>22.4.3 鎖定編輯記錄&nbsp;&nbsp;</font><br>22.4.4 使用“不鎖定”鎖定模式&nbsp;&nbsp;</font><br>22.4.5 在VBA中使用鎖定模式&nbsp;&nbsp;</font><br>22.4.6 使用可選鎖定方案&nbsp;&nbsp;</font><br>22.5 在VBA中使用非綁定窗體&nbsp;&nbsp;</font><br>22.5.1 為處理非綁定窗體創(chuàng)建例程&nbsp;&nbsp;</font><br>22.5.2 使用樣本窗體的步驟&nbsp;&nbsp;</font><br>22.5.3 使用支持例程&nbsp;&nbsp;</font><br>22.5.4 處理DAO版本&nbsp;&nbsp;</font><br>22.5.5 設(shè)置樣本應(yīng)用程序的ADO版本&nbsp;&nbsp;</font><br>22.6 多用戶錯誤處理編程&nbsp;&nbsp;</font><br>22.7 用ADO獲取登錄用戶列表&nbsp;&nbsp;</font><br>22.8 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第23章 數(shù)據(jù)庫同步復(fù)制&nbsp;&nbsp;</font><br></font><br>23.1 數(shù)據(jù)庫同步復(fù)制的概念&nbsp;&nbsp;</font><br>23.1.1 同步復(fù)制設(shè)計目標&nbsp;&nbsp;</font><br>23.1.2 典型的同步復(fù)制應(yīng)用程序&nbsp;&nbsp;</font><br>23.2 Jet同步復(fù)制工具&nbsp;&nbsp;</font><br>23.2.1 公文包&nbsp;&nbsp;</font><br>23.2.2 Access 2000菜單&nbsp;&nbsp;</font><br>22.2.3 Replication Manager&nbsp;&nbsp;</font><br>23.2.4 JRO編程&nbsp;&nbsp;</font><br>23.3 數(shù)據(jù)庫轉(zhuǎn)換為副本&nbsp;&nbsp;</font><br>23.4 同步副本&nbsp;&nbsp;</font><br>23.4.1 設(shè)計母版和副本&nbsp;&nbsp;</font><br>23.4.2 恢復(fù)設(shè)計母版&nbsp;&nbsp;</font><br>23.4.3 同步復(fù)制可視化&nbsp;&nbsp;</font><br>23.4.4 同步復(fù)制系統(tǒng)的列、表及其他問題&nbsp;&nbsp;</font><br>23.4.5 使用副本集&nbsp;&nbsp;</font><br>23.5 副本集拓撲&nbsp;&nbsp;</font><br>23.5.1 單連接列表&nbsp;&nbsp;</font><br>23.5.2 星型和中心拓撲&nbsp;&nbsp;</font><br>23.6 星型和中心自動同步&nbsp;&nbsp;</font><br>23.7 分布可同步復(fù)制的應(yīng)用程序&nbsp;&nbsp;</font><br>23.7.1 使用可同步復(fù)制的和非可同步復(fù)制的對象&nbsp;&nbsp;</font><br>23.7.2 部分副本&nbsp;&nbsp;</font><br>23.8 同步復(fù)制后端和前端應(yīng)用程序&nbsp;&nbsp;</font><br>23.9 處理同步復(fù)制沖突&nbsp;&nbsp;</font><br>23.9.1 數(shù)據(jù)沖突&nbsp;&nbsp;</font><br>23.9.2 使用Access 2000沖突解決器&nbsp;&nbsp;</font><br>23.9.3 使用另一個沖突解決算法&nbsp;&nbsp;</font><br>23.9.4 各種同步復(fù)制沖突&nbsp;&nbsp;</font><br>23.10 復(fù)制同步器&nbsp;&nbsp;</font><br>23.10.1 同步階段&nbsp;&nbsp;</font><br>23.10.2 直接和間接同步&nbsp;&nbsp;</font><br>23.10.3 預(yù)定和隨選同步&nbsp;&nbsp;</font><br>23.10.4 在Internet上同步副本&nbsp;&nbsp;</font><br>23.10.5 處理計數(shù)字段&nbsp;&nbsp;</font><br>23.10.6 使用同步復(fù)制的只讀屬性&nbsp;&nbsp;</font><br>23.10.7 執(zhí)行同步復(fù)制鑒別修正&nbsp;&nbsp;</font><br>23.10.8 使用最后的同步伙伴&nbsp;&nbsp;</font><br>23.10.9 對同步復(fù)制的數(shù)據(jù)庫使用壓縮工具&nbsp;&nbsp;</font><br>23.10.10 確定是否備份副本&nbsp;&nbsp;</font><br>23.11 副本集從Access 2000 升級為Access 2000</font><br>23.12 保護同步復(fù)制的應(yīng)用程序&nbsp;&nbsp;</font><br>23.13 同步復(fù)制數(shù)據(jù)庫使用MDE文件&nbsp;&nbsp;</font><br>23.14 創(chuàng)建成功的同步復(fù)制應(yīng)用程序&nbsp;&nbsp;</font><br>23.15 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第24章 應(yīng)用程序移到客戶/服務(wù)器&nbsp;&nbsp;</font><br></font><br>24.1 了解客戶/服務(wù)器&nbsp;&nbsp;</font><br>24.1.1 客戶/服務(wù)器術(shù)語解釋&nbsp;&nbsp;</font><br>24.1.2 利用ODBC&nbsp;&nbsp;</font><br>24.1.3 客戶/服務(wù)器中使用Access 2000的原因&nbsp;&nbsp;</font><br>24.2 遷移到客戶/服務(wù)器的考慮因素&nbsp;&nbsp;</font><br>24.2.1 數(shù)據(jù)量&nbsp;&nbsp;</font><br>24.2.2 數(shù)據(jù)庫的使用和用處&nbsp;&nbsp;</font><br>24.2.3 數(shù)據(jù)庫設(shè)計&nbsp;&nbsp;</font><br>24.2.4 同時使用及用戶數(shù)量&nbsp;&nbsp;</font><br>24.2.5 備份與恢復(fù)&nbsp;&nbsp;</font><br>24.2.6 安全性&nbsp;&nbsp;</font><br>24.2.7 應(yīng)用程序間的數(shù)據(jù)共享&nbsp;&nbsp;</font><br>24.2.8 網(wǎng)絡(luò)傳輸&nbsp;&nbsp;</font><br>24.2.9 記錄集合&nbsp;&nbsp;</font><br>24.2.10 選擇合適的系統(tǒng)&nbsp;&nbsp;</font><br>24.3 制訂客戶/服務(wù)器計劃&nbsp;&nbsp;</font><br>24.3.1 字段和表的名稱&nbsp;&nbsp;</font><br>24.3.2 保留字&nbsp;&nbsp;</font><br>24.3.3 區(qū)分字母大小寫&nbsp;&nbsp;</font><br>24.3.4 服務(wù)器上的查詢處理&nbsp;&nbsp;</font><br>24.4 應(yīng)用程序開發(fā)過程的注意事項&nbsp;&nbsp;</font><br>24.4.1 限定數(shù)據(jù)&nbsp;&nbsp;</font><br>24.4.2 使用組合框&nbsp;&nbsp;</font><br>24.4.3 使用Access 2000特定函數(shù)和用戶自定義函數(shù)&nbsp;&nbsp;</font><br>24.4.4 創(chuàng)建異構(gòu)聯(lián)接及交叉數(shù)據(jù)庫聯(lián)接&nbsp;&nbsp;</font><br>24.4.5 處理OLE對象&nbsp;&nbsp;</font><br>24.4.6 使用本地表獲取靜態(tài)信息&nbsp;&nbsp;</font><br>24.5 轉(zhuǎn)換現(xiàn)有的應(yīng)用程序&nbsp;&nbsp;</font><br>24.5.1 從設(shè)計合理的數(shù)據(jù)庫開始&nbsp;&nbsp;</font><br>24.5.2 使用時間戳字段&nbsp;&nbsp;</font><br>24.5.3 清理查詢&nbsp;&nbsp;</font><br>24.5.4 重做窗體&nbsp;&nbsp;</font><br>24.5.5 開發(fā)高級應(yīng)用程序&nbsp;&nbsp;</font><br>24.5.6 利用當前的Access 2000安全性&nbsp;&nbsp;</font><br>24.5.7 升遷Access 2000數(shù)據(jù)庫&nbsp;&nbsp;</font><br>24.5.8 使用升遷工具&nbsp;&nbsp;</font><br>24.6 分布客戶/服務(wù)器解決方案&nbsp;&nbsp;</font><br>24.6.1 編程設(shè)置ODBC數(shù)據(jù)源&nbsp;&nbsp;</font><br>24.6.2 用服務(wù)器腳本重新創(chuàng)建SQL數(shù)據(jù)庫&nbsp;&nbsp;</font><br>24.6.3 向SQL Server加載現(xiàn)有的數(shù)據(jù)&nbsp;&nbsp;</font><br>24.7 Access 2000和SQL Server的注意事項&nbsp;&nbsp;</font><br>24.8 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第25章 用ADPs開發(fā)SQL Server項目&nbsp;&nbsp;</font><br></font><br>25.1 項目文件結(jié)構(gòu)&nbsp;&nbsp;</font><br>25.1.1 介紹OLE DB&nbsp;&nbsp;</font><br>25.1.2 鏈接到數(shù)據(jù)&nbsp;&nbsp;</font><br>25.1.3 數(shù)據(jù)鏈接和Access 2000項目&nbsp;&nbsp;</font><br>25.1.4 數(shù)據(jù)鏈接和VBA代碼&nbsp;&nbsp;</font><br>25.1.5 Microsoft數(shù)據(jù)引擎&nbsp;&nbsp;</font><br>25.1.6 SQL Server上的對象&nbsp;&nbsp;</font><br>25.2 創(chuàng)建過程&nbsp;&nbsp;</font><br>25.2.1 創(chuàng)建新項目&nbsp;&nbsp;</font><br>25.2.2 項目屬性&nbsp;&nbsp;</font><br>25.2.3 確保項目安全&nbsp;&nbsp;</font><br>25.3 創(chuàng)建客戶/服務(wù)器應(yīng)用程序&nbsp;&nbsp;</font><br>25.3.1 使用表&nbsp;&nbsp;</font><br>25.3.2 對象的命名約定&nbsp;&nbsp;</font><br>25.3.3 SQL Server的數(shù)據(jù)類型&nbsp;&nbsp;</font><br>25.3.4 使用約束&nbsp;&nbsp;</font><br>25.3.5 使用觸發(fā)器&nbsp;&nbsp;</font><br>25.3.6 優(yōu)化數(shù)據(jù)訪問&nbsp;&nbsp;</font><br>25.4 使用視圖&nbsp;&nbsp;</font><br>25.5 使用存儲過程&nbsp;&nbsp;</font><br>25.5.1 創(chuàng)建存儲過程&nbsp;&nbsp;</font><br>25.5.2 比較存儲過程和Access 2000語法&nbsp;&nbsp;</font><br>25.6 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第六部分 添加最終的交互&nbsp;&nbsp;</font><br></font><br>第26章 使用DAO的啟動檢查系統(tǒng)例程&nbsp;&nbsp;</font><br></font><br>26.1 執(zhí)行啟動系統(tǒng)檢查&nbsp;&nbsp;</font><br>26.2 使用定制數(shù)據(jù)庫屬性&nbsp;&nbsp;</font><br>26.2.1 通過用戶界面創(chuàng)建數(shù)據(jù)庫屬性&nbsp;&nbsp;</font><br>26.2.2 從VBA訪問定制數(shù)據(jù)庫屬性&nbsp;&nbsp;</font><br>26.3 通知和記錄用戶退出應(yīng)用程序&nbsp;&nbsp;</font><br>26.3.1 啟動時讓用戶退出&nbsp;&nbsp;</font><br>26.3.2 在應(yīng)用程序運行中記錄用戶退出&nbsp;&nbsp;</font><br>26.3.3 設(shè)置標志文件讓用戶退出后端&nbsp;&nbsp;</font><br>26.3.4 啟動時測試鏈接表的鏈接&nbsp;&nbsp;</font><br>26.4 通過VBA鏈接和解除鏈接表&nbsp;&nbsp;</font><br>26.4.1 鏈接和解除鏈接位于應(yīng)用程序文件夾中Jet后端的表&nbsp;&nbsp;</font><br>26.4.2 用OpenFile API調(diào)用查找Jet后端&nbsp;&nbsp;</font><br>26.5 測試和修復(fù)損壞的Jet后端數(shù)據(jù)庫&nbsp;&nbsp;</font><br>26.6 檢查并通知用戶新版本的情況&nbsp;&nbsp;</font><br>26.7 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第27章 使用ADO的啟動檢查系統(tǒng)例程&nbsp;&nbsp;</font><br></font><br>27.1 執(zhí)行啟動系統(tǒng)檢查&nbsp;&nbsp;</font><br>27.2 采用ADO設(shè)置和檢索系統(tǒng)的設(shè)置&nbsp;&nbsp;</font><br>27.3 在啟動時測試鏈接表的連接&nbsp;&nbsp;</font><br>27.4 通過VBA和ADO鏈接表&nbsp;&nbsp;</font><br>27.5 測試和修復(fù)損壞的Jet后端數(shù)據(jù)庫&nbsp;&nbsp;</font><br>27.6 使用ADO復(fù)制代碼表&nbsp;&nbsp;</font><br>27.7 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第28章 創(chuàng)建維護例程&nbsp;&nbsp;</font><br></font><br>28.1 創(chuàng)建導(dǎo)出對話框?qū)С鰬?yīng)用程序的表&nbsp;&nbsp;</font><br>28.1.1 實用工具的演示&nbsp;&nbsp;</font><br>28.1.2 查看組成導(dǎo)出實用工具的部件&nbsp;&nbsp;</font><br>28.1.3 查看創(chuàng)建導(dǎo)出實用工具的代碼&nbsp;&nbsp;</font><br>28.2 根據(jù)需要壓縮和修復(fù)后端&nbsp;&nbsp;</font><br>28.3 創(chuàng)建通用代碼表編輯器&nbsp;&nbsp;</font><br>28.4 后端復(fù)制表到前端以獲取更好的性能&nbsp;&nbsp;</font><br>28.4.1 創(chuàng)建復(fù)制表編輯器&nbsp;&nbsp;</font><br>28.4.2 復(fù)制半靜態(tài)數(shù)據(jù)的啟動例程&nbsp;&nbsp;</font><br>28.5 小 結(jié)&nbsp;&nbsp;</font><br></font><br>第七部分 附錄&nbsp;&nbsp;</font><br></font><br>附錄A 在Access 2000中調(diào)試代碼&nbsp;&nbsp;</font><br></font><br>A.1 設(shè)置正確的模塊選項以發(fā)揮最大的調(diào)試能力&nbsp;&nbsp;</font><br>A.2 利用立即窗口&nbsp;&nbsp;</font><br>A.2.1 從應(yīng)用程序向立即窗口顯示數(shù)據(jù)&nbsp;&nbsp;</font><br>A.2.2 在立即窗口中顯示數(shù)據(jù)&nbsp;&nbsp;</font><br>A.2.3 在立即窗口中給變量和對象賦值&nbsp;&nbsp;</font><br>A.2.4 從立即窗口運行代碼&nbsp;&nbsp;</font><br>A.3 終止程序運行&nbsp;&nbsp;</font><br>A.3.1 使用Stop語句&nbsp;&nbsp;</font><br>A.3.2 使用斷點&nbsp;&nbsp;</font><br>A.3.3 使用Debug.Assert&nbsp;&nbsp;</font><br>A.4 單步調(diào)試&nbsp;&nbsp;</font><br>A.4.1 按行“逐語句”運行代碼&nbsp;&nbsp;</font><br>A.4.2 用“逐過程”越過代碼&nbsp;&nbsp;</font><br>A.4.3 用“跳出”命令離開例程&nbsp;&nbsp;</font><br>A.4.4 "運行到光標處”命令略過已檢驗的代碼&nbsp;&nbsp;</font><br>A.5 查看過程調(diào)用順序&nbsp;&nbsp;</font><br>A.6 程序運行期間監(jiān)視表達式&nbsp;&nbsp;</font><br>A.6.1 本地窗口&nbsp;&nbsp;</font><br>A.6.2 用“快速監(jiān)視”對話框快速監(jiān)視&nbsp;&nbsp;</font><br>A.6.3 在監(jiān)視窗口中添加和查看表達式&nbsp;&nbsp;</font><br>A.6.4 設(shè)置斷點條件和編輯表達式&nbsp;&nbsp;</font><br>A.7 用條件編譯命令控制代碼&nbsp;&nbsp;</font><br>A.8 小 結(jié)&nbsp;&nbsp;</font><br></font><br>附錄B ActiveX初步&nbsp;&nbsp;</font><br></font><br>B.1 使用ActiveX控件&nbsp;&nbsp;</font><br>B.1.1 Access 2000附帶的ActiveX控件&nbsp;&nbsp;</font><br>B.1.2 在窗體上放置ActiveX控件&nbsp;&nbsp;</font><br>B.1.3 設(shè)計期間設(shè)置ActiveX控件的屬性&nbsp;&nbsp;</font><br>B.2 用日歷控件計算天數(shù)&nbsp;&nbsp;</font><br>B.2.1 日歷ActiveX控件的屬性&nbsp;&nbsp;</font><br>B.2.2 用日歷控件設(shè)計VBA&nbsp;&nbsp;</font><br>B.3 通過Common Dialog ActiveX控件使用標準界面&nbsp;&nbsp;</font><br>B.3.1 用Common Dialog 控件查找文件&nbsp;&nbsp;</font><br>B.3.2 用Common Dialog ActiveX控件改變默認的系統(tǒng)打印機&nbsp;&nbsp;</font><br>B.4 小 結(jié)&nbsp;&nbsp;</font><br></font><br>附錄C Access 2000和Jet4的錯誤&nbsp;&nbsp;</font><br></font><br>附錄D Microsoft Access 2000 LESZYNSKI命名約定&nbsp;&nbsp;</font><br>D.1 命名約定初步&nbsp;&nbsp;</font><br>D.2 Access 2000對象類型&nbsp;&nbsp;</font><br>D.3 對象名的結(jié)構(gòu)&nbsp;&nbsp;</font><br>D.3.1 什么是前綴&nbsp;&nbsp;</font><br>D.3.2 什么是標記&nbsp;&nbsp;</font><br>D.3.3 什么是基本名稱&nbsp;&nbsp;</font><br>D.3.4 什么是限定符&nbsp;&nbsp;</font><br>D.3.5 什么是后綴&nbsp;&nbsp;</font><br>D.4 創(chuàng)建數(shù)據(jù)庫對象基本名稱&nbsp;&nbsp;</font><br>D.4.1 基本名稱規(guī)則&nbsp;&nbsp;</font><br>D.4.2 基本名稱長度限制&nbsp;&nbsp;</font><br>D.4.3 復(fù)合基本名稱&nbsp;&nbsp;</font><br>D.4.4 字段基本名稱&nbsp;&nbsp;</font><br>D.4.5 基本名稱元素的順序&nbsp;&nbsp;</font><br>D.5 數(shù)據(jù)庫對象的命名約定&nbsp;&nbsp;</font><br>D.5.1 數(shù)據(jù)庫窗口對象的標記&nbsp;&nbsp;</font><br>D.5.2 窗體和報表控件對象的標記&nbsp;&nbsp;</font><br>D.5.3 數(shù)據(jù)庫對象的前綴&nbsp;&nbsp;</font><br>D.5.4 使用菜單宏&nbsp;&nbsp;</font><br>D.5.5 數(shù)據(jù)庫對象名樣例&nbsp;&nbsp;</font><br>D.6 創(chuàng)建VBA對象基本名稱&nbsp;&nbsp;</font><br>D.6.1 VBA對象基本名稱的規(guī)則&nbsp;&nbsp;</font><br>D.6.2 VBA對象基本名稱長度&nbsp;&nbsp;</font><br>D.6.3 復(fù)合VBA 對象基本名稱&nbsp;&nbsp;</font><br>D.7 VBA對象的命名約定&nbsp;&nbsp;</font><br>D.7.1 變量的標記&nbsp;&nbsp;</font><br>D.7.2 變量的前綴&nbsp;&nbsp;</font><br>D.7.3 常量命名&nbsp;&nbsp;</font><br>D.7.4 過程的標記和前綴&nbsp;&nbsp;</font><br>D.7.5 用宏代替VBA&nbsp;&nbsp;</font><br>D.7.6 Visual Basic對象名示例&nbsp;&nbsp;</font><br>D.8 創(chuàng)建自己的標記&nbsp;&nbsp;</font><br>D.9 VBA編碼約定&nbsp;&nbsp;</font><br>D.9.1 編碼注釋&nbsp;&nbsp;</font><br>D.9.2 處理錯誤&nbsp;&nbsp;</font><br>D.10 標準縮寫&nbsp;&nbsp;</font><br>D.11 標準術(shù)語&nbsp;&nbsp;</font><br>D.12 LNC的補充信息&nbsp;&nbsp;</font><br>D.12.1 如何得到LNC&nbsp;&nbsp;</font><br>D.12.2 發(fā)送反饋&nbsp;&nbsp;</font><br>D.12.3 作者簡介&nbsp;&nbsp;</font><br></font><br>光盤使用約定&nbsp;&nbsp;</font><br>配套光盤內(nèi)容 

本目錄推薦

掃描二維碼
Copyright ? 讀書網(wǎng) ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網(wǎng)安備 42010302001612號