Application.VisualReportsSaveDatabase 方法 (Project)
将“可视报表”数据库保存到默认目录或指定的目录中。
语法
expression. VisualReportsSaveDatabase
( _strNamePath_
, _PjVisualReportsDataLevel_
)
expression:表示 Application 对象的变量。
参数
名称 | 必需/可选 | 数据类型 | 说明 |
---|---|---|---|
strNamePath | 可选 | String | 保存数据库文件 (.mbd) 的位置的名称和完整路径。 |
PjVisualReportsDataLevel | 可选 | Long | 保存数据级别。 可以是 PjVisualReportsDataLevel 常量之一。 默认值为 pjLevelAutomatic 。 |
返回值
Boolean
说明
PjVisualReportsDataLevel 参数指定时间分段的数据可访问的级别。 例如,如果 pjLevelMonths 指定 (月数),则它不能访问 pjLevelDays (天)。
示例
下面是使用 VisualReportsSaveDatabase 方法的示例。
Sub a()
Dim tf As Boolean
tf = Application.VisualReportsSaveDatabase("C:\mydb.mdb", pjLevelAutomatic)
If tf = True Then
MsgBox ("Database saved successfully")
Else
MsgBox ("Database wasn't saved successfully")
End If
End Sub
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。