Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
37 lines (23 loc) · 807 Bytes

application-displaywizardscheduling-property-project.md

File metadata and controls

37 lines (23 loc) · 807 Bytes
title ms.prod api_name ms.assetid ms.date
Application.DisplayWizardScheduling Property (Project)
project-server
Project.Application.DisplayWizardScheduling
abcd5660-1eef-d53b-548f-6ead0c57f836
06/08/2017

Application.DisplayWizardScheduling Property (Project)

True if the Planning Wizard displays messages about scheduling problems. Read/write Boolean.

Syntax

expression. DisplayWizardScheduling

expression A variable that represents an Application object.

Example

The following example resets the PlanningWizard to its default settings.

Sub ResetWizard() 
 Application.DisplayPlanningWizard = True 
 Application.DisplayWizardErrors = True 
 Application.DisplayWizardScheduling = True 
 Application.DisplayWizardUsage = True 
End Sub