Microsoft Knowledge Base Email Alertz

KBAlertz.com: By default, the Getting Started (Home) task pane appears when you start a Microsoft Office 2003 program listed in the Applies to section. This task pane provides a quick way to open a specific document, create a new document, or find out more about...

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]

Search KbAlertz

Advanced Search

Webmasters
Put kbAlertz on your website.
[ Click Here for more! ]





ASP.NET 3.5 Web Hosting with Windows 2008 and SQL 2008: Click Here!
Discount ASP.NET Hosting
ASP.NET 2.0 and 3.5
Windows2008 and SQL2008
US and UK Hosting
The ad says 3 - but KBAlertz referrals get
** SIX MONTHS FREE **


Bug Tracking Software
For bug tracking software or defect tracking software or issue tracking software, visit Axosoft.


Community Site



We Send hundreds of thousands of emails using ASP.NET Email



Expert Web Design & Graphic Design
Design44.com

ASP.NET 3.5 Web Hosting with Windows 2008 and SQL 2008: Click Here!
Discount ASP.NET Hosting
ASP.NET 2.0 and 3.5
Windows2008 and SQL2008
US and UK Hosting
The ad says 3 - but KBAlertz referrals get
** SIX MONTHS FREE **




Mentioned In








Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks




Article ID: 816949 - Last Review: November 23, 2006 - Revision: 2.6

Description of the Getting Started task pane in Office 2003

On This Page

SUMMARY

By default, the Getting Started (Home) task pane appears when you start a Microsoft Office 2003 program listed in the Applies to section. This task pane provides a quick way to open a specific document, create a new document, or find out more about the program.

Many of the services available on the Office Online and Microsoft.com Web sites can also be accessed through the Getting Started task pane. Additionally, local resources can be accessed through the Getting Started task pane.

MORE INFORMATION

By default, the Getting Started task pane is available when you start a Microsoft Office 2003 program that is listed in the "Applies To" section. Task panes can be turned off at startup so that no task pane is visible when you start the program. This setting is program-specific and does not affect the task pane startup in the other Office programs.

To turn off the task panes in a program, follow these steps:
  1. Start the program.
  2. On the Tools menu, click Options.
  3. On the View tab, click to clear the Startup Task Pane check box, and then click OK.

    Note: In FrontPage, the Startup Task Pane check box is on the General tab.
After you turn off the task panes in an Office program, the task panes are still easily available. For example, the task panes are available when you do either of the following:
  • When you perform certain tasks in the Office program, the appropriate task pane will appear.

    -or-
  • When you click Task Pane on the View menu, or you press CTRL+F1.

To Create a New File

To create a new file in an Office program using the Getting Started task pane, do one of the following:
  • In Excel, click Create a new workbook.
  • In FrontPage, click Create a new page or site.
  • In PowerPoint, click Create a new presentation.
  • In Word, click Create a new document.

To Add a New File or Template to the Getting Started Task Pane

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, see the following Microsoft Web site:
https://partner.microsoft.com/global/30000104 (https://partner.microsoft.com/global/30000104)
For additional information about the support options available from Microsoft, visit the following Microsoft Web site:
http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS (http://support.microsoft.com/default.aspx?scid=fh;en-us;cntactms)
You can modify the Getting Started task pane to include a link to the documents or files that you use most frequently. To do this, you must use a Visual Basic for Applications macro.
   Sub AddNewDocToTaskPane()

      'Replace the FileName:= "C:\NewDocument.doc" with the path of the
      'file you want to appear on the Getting Started task pane.

      'Replace the DisplayName:="Look! My New Document option" with the
      'text you want to show on the Getting Started task pane.

      Application.NewDocument.Add FileName:="C:\NewDocument.doc", _
         Section:=msoStart, DisplayName:="Look! My New Document option"

         With Application.CommandBars("Task Pane")
            .Visible = False
            .Visible = True
         End With

   End Sub

APPLIES TO
  • Microsoft Office Standard Edition 2003
  • Microsoft Office Excel 2003
  • Microsoft Office FrontPage 2003
  • Microsoft Office PowerPoint 2003
  • Microsoft Office Word 2003
Keywords: 
kbvba kbinfo KB816949
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate

Ricardo Pinto Report As Irrelevant  
Written: 7/20/2005 2:15 AM
Hello! Are you sure the tag msoStart exists??? I get the folowing error: "Compile error: byref argument type mismatch" And the documentation I have refers these tags: 0 msoOpenDocument 1 msoNew 2 msoNewFromExistingFile 3 msoNewfromTemplate 4 msoBottomSection Any idea about it?? Thanks in advance, Ricardo Pinto

(Optional) Name

(Optional) Public URL Or Email

Comments
No HTML -- Text Only Please