# Disabling the Print Progress Form

Learn how to disable the print progress form option available in the C1Schedule for WinForms control.

## Content



By default, a **Processing Document** dialog box is displayed at run time before printing or previewing data in **Scheduler for WinForms**:

![Processing Document](https://cdn.mescius.io/document-site-files/images/675b9aff-7616-4324-81ac-58e410fb9531/imagesext/image13_23.png)

If you prefer that end-users not see this dialog box, you can disable it using the [ShowProgressForm](/componentone/docs/win/online-schedule/) property. If ShowProgressForm is set to **False** the [C1Schedule](/componentone/docs/win/online-schedule/) control will not display the **Processing Document** dialog box.

To disable the print progress form, set the ShowProgressForm property to **False** either in the Properties window or in code.

### In the Properties Window

Locate the ShowProgressForm property in the C1Schedule Properties window and set it to **False**:

![Properties Window](https://cdn.mescius.io/document-site-files/images/675b9aff-7616-4324-81ac-58e410fb9531/imagesext/image13_24.png)

### In Code

Add the following code to the **Form\_Load** event to set the [ShowProgressForm](/componentone/docs/win/online-schedule/) property to **False**:

DOC-DETAILS-TAG-OPEN

DOC-SUMMARY-TAG-OPEN

To write code in Visual Basic

DOC-SUMMARY-TAG-CLOSE

```vbnet
Me.C1Schedule1.PrintInfo.ShowProgressForm = False
```

DOC-DETAILS-TAG-CLOSE

DOC-DETAILS-TAG-OPEN

DOC-SUMMARY-TAG-OPEN

To write code in C#

DOC-SUMMARY-TAG-CLOSE

```csharp
this.c1Schedule1.PrintInfo.ShowProgressForm = false;
```

DOC-DETAILS-TAG-CLOSE