[ 本帖最后由 rcylbx 于 2008-7-28 23:47 编辑 ]作者: ui 时间: 2008-7-29 08:51
rs 没有这个属性,使用 document作者: zhouyunliang 时间: 2008-7-29 11:31
Dim tbl As TableDef
dim strdes as string
on error resume next
For Each tbl In CurrentDb.TableDefs'循环所有表
strdes= Tbl.Properties("description").Value
if err=0 then msgbox strdes
next作者: rcylbx 时间: 2008-7-29 18:50
先谢谢了