Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 952 Bytes

Project.Project.TaskTableList.md

File metadata and controls

47 lines (30 loc) · 952 Bytes
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.TaskTableList property (Project)
vbapj.chm132713
vbapj.chm132713
project-server
Project.Project.TaskTableList
a36abbcb-db7d-f593-7e5c-df00fd96f010
06/08/2017
medium

Project.TaskTableList property (Project)

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

Syntax

expression. TaskTableList

expression A variable that represents a Project object.

Example

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]