Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 922 Bytes

Project.Project.ResourceTableList.md

File metadata and controls

44 lines (27 loc) · 922 Bytes
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.ResourceTableList property (Project)
project-server
Project.Project.ResourceTableList
3d6c7995-4527-1597-ec56-c75d59be131a
06/08/2017
medium

Project.ResourceTableList property (Project)

Gets a List object representing all resource tables in the project. Read-only List.

Syntax

expression. ResourceTableList

expression A variable that represents a Project object.

Example

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]