ResourceTableList Property

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

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

Applies to | Project Object, Projects Collection Object

See Also | CurrentTable Property | ResourceFilterList Property | ResourceViewList Property | TaskTableList Property