Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.13 KB

Project.Task.Name.md

File metadata and controls

53 lines (37 loc) · 1.13 KB
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Task.Name property (Project)
project-server
Project.Task.Name
2df034b0-13bc-f912-abbc-6b97b8c8d5ed
06/08/2017
medium

Task.Name property (Project)

Gets or sets the name of a Task object. Read/write String.

Syntax

expression.Name

expression A variable that represents a Task object.

Example

The following example displays the task names that contain the specified text.

Sub NameExample() 
    Dim t As Task 
    Dim x As String 
    Dim y As String 
 
    x = InputBox$("Search for tasks that include the following text in their names:") 
 
    If Not x = "" Then 
        For Each t In ActiveProject.Tasks 
            If InStr(1, t.Name, x, 1) Then 
                y = y & vbCrLf & t.ID & ": " & t.Name 
            End If 
        Next t 
 
        If Len(y) = 0 Then 
            MsgBox "No tasks with the text " & x & " found in the project", vbExclamation 
        Else 
            MsgBox y 
        End If 
    End If 
End Sub

[!includeSupport and feedback]