資料庫匯出表結構設計word文件

2021-09-02 16:23:38 字數 763 閱讀 3987

1、dbexportdoc v1.0 for oracle工具匯出的word文件中的**沒有邊框。

2、可以通過如下的巨集,選中所有**後,進行邊框設定。

alt+f8,開啟巨集對話方塊,建立名為selectalltables的巨集。**如下:

sub selectalltables()

dim temptable as table

'判斷文件是否被保護

if activedocument.protectiontype = wdallowonlyformfields then

msgbox "文件已保護,此時不能選中多個**!"

exit sub

end if

'刪除所有可編輯的區域

activedocument.deletealleditableranges wdeditoreveryone

'新增可編輯區域

for each temptable in activedocument.tables

temptable.range.editors.add wdeditoreveryone

next

'選中所有可編輯區域

activedocument.selectalleditableranges wdeditoreveryone

'刪除所有可編輯的區域

activedocument.deletealleditableranges wdeditoreveryone

end sub

儲存完成後選擇載入該巨集即可。

資料庫表結構設計

立即建立此表 返回資料庫大全 mysql建表sql語句 資料庫結構 敏捷專案 系統配置表 資料庫大全 敏捷專案 系統配置表 create table yesapi main setting id bigint 20 unsigned not null auto increment,key varch...

資料庫結構設計

1.3概念設計的任務 1.2概念設計的依據 需求分析的文件,需求說明書,功能模型 資料流圖或idef0圖 資訊模型 er圖 和資料庫概念說明書是資料庫邏輯設計的依據 1.2 資料庫概念設計過程 1.3 資料建模方法 er建模方法 idef1x建模方法標識er模型中的聯絡,依次轉換與每個聯絡相關聯的實...

資料庫表結構設計方法

author skate time 2011 02 12 資料庫表結構設計方法 當我們設計乙個資料庫儲存模式時,要仔細分析資料模式,不要一股腦的把所有的資料都放在一起。那樣的話對系統的可用性,高效能,擴充套件性都會有嚴重的影響。當然你設計的系統非常小,完全可以用最簡單的方法。要通過對業務的熟練,從不...