title | keywords | f1_keywords | ms.service | api_name | ms.assetid | ms.date | ms.localizationpriority | ||
---|---|---|---|---|---|---|---|---|---|
Project.TaskTableList property (Project) |
vbapj.chm132713 |
|
project-server |
|
a36abbcb-db7d-f593-7e5c-df00fd96f010 |
06/08/2017 |
medium |
Gets a List object representing all task tables in the project. Read-only List.
expression. TaskTableList
expression A variable that represents a Project object.
The following example lists all the task tables in the active project.
Sub SeeAllTables()
Dim Temp As Variant
Dim TaskTableNames As String
For Each Temp In ActiveProject.TaskTableList
TaskTableNames = TaskTableNames & vbCrLf & Temp
Next Temp
MsgBox TaskTableNames
End Sub
[!includeSupport and feedback]