---
title: "Essential Tools Windows Vol 3 Features"
published_at: "2010-05-06T16:12:00+00:00"
modified_at: "2025-03-20T08:07:19+00:00"
url: "https://www.syncfusion.com/blogs/post/essential-tools-windows-vol-3-features-cool-preview"
excerpt: "CaptionForeColor in Office2F007Form The Office2007Form, besides having the normal properties, supports the color schemes Blue, Silver, and Black. It also supports a Help button, a right-to-left feature, and the Office 2007 look and feel. Office2007Form in 2010 Vol. 3 provides..."
taxonomy_category:
  - "Desktop"
  - "Windows Forms"
taxonomy_post_tag:
  - "2010 Volume 3"
  - "Office 2007 Form"
  - "theme"
---

# Essential Tools Windows Vol 3 Features

[Syncfusion Guest Blogger](https://www.syncfusion.com/blogs/author/syncfusion-guest-blogger)

![Image](https://www.syncfusion.com/blogs/wp-content/uploads/2018/08/toolswindow_office2007form_53d55248.png)


## CaptionForeColor in Office2F007Form

The Office2007Form, besides having the normal properties, supports the color schemes Blue, Silver, and Black. It also supports a Help button, a right-to-left feature, and the Office 2007 look and feel.

Office2007Form in 2010 Vol. 3 provides support for setting the forecolor of caption text. A property called CaptionForeColor was added to achieve this in the Office2007Form class.

![clip_image002](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-173.jpg "clip_image002")

**API added:**

CaptionForeColor (property)

**Example use case:**

[C#]

```
Office2007Form form = new Office2007Form();
form.CaptionForeColor = Color.Green;
form.Text = "Office 2007 Form";
```

[VB]

```
Dim form As New Office2007Form()
form.CaptionForeColor = Color.Green
form.Text = "Office 2007 Form"
```

**Note:**

The text color of a form will not be applied when the form is opened with AeroTheme. You can disable the AeroTheme for the form as discussed in the below thread.

## **Toggle AeroTheme in Office2007Form**

Office 2007 forms with Essential Studio® 2010 Vol. 3 will have the ability to turn off the AeroTheme effect in Vista and Windows 7. You can toggle the glass effect even if the AeroTheme is set as a default, like Windows 7.

![clip_image003](https://blog.syncfusion.com/wp-content/uploads/2018/08/image-538.png "clip_image003")

**API Added:**

ApplyAeroTheme (property)

**Example use case:**

[C#]

```
Office2007Form form = new Office2007Form();
form.ApplyAeroTheme = false; // To disable the Aero Effect to the form
//form.ApplyAeroTheme = true; // To enable the Aero Effect to the form
```

[VB]

```
Dim form As New Office2007Form()
form.ApplyAeroTheme = False ' To disable the Aero Effect to the form
'form.ApplyAeroTheme = True ' To enable the Aero Effect to the form
```
