Project.ResourceTableList Property

Project Developer Reference

Returns a List object representing all resource tables in the active project. Read-only Object.

Syntax

expression.ResourceTableList

expression   A variable that represents a Project object.

Example
The following example lists all the resource tables in the active project.

Visual Basic for Applications
  Sub SeeAllResTables()
Dim Temp As Variant
Dim ResTableNames As String

For Each Temp In ActiveProject.<strong class="bterm">ResourceTableList</strong>
    ResTableNames = ResTableNames &amp; vbCrLf &amp; Temp
Next Temp

MsgBox ResTableNames

End Sub

See Also