title | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | |
---|---|---|---|---|---|---|
Project.ResourceTableList property (Project) |
project-server |
|
3d6c7995-4527-1597-ec56-c75d59be131a |
06/08/2017 |
medium |
Gets a List object representing all resource tables in the project. Read-only List.
expression. ResourceTableList
expression A variable that represents a Project object.
The following example lists all the resource tables in the active project.
Sub SeeAllResTables()
Dim Temp As Variant
Dim ResTableNames As String
For Each Temp In ActiveProject.ResourceTableList
ResTableNames = ResTableNames & vbCrLf & Temp
Next Temp
MsgBox ResTableNames
End Sub
[!includeSupport and feedback]